Hello Roland and everybody. Happy new year!
About MSElang. Indeed, Martin did not enable MSElang for Windows yet.mymsetest.pas But with some cups of coffee it would be possible to enable it (I hope). By the way I did find how to do to have a working executable on Linux 32 bit, The shema is like this: MSElang create a .bc (bitcode) file from the pascal file and sent it to llmv executable. Then the MSElang tool-chain will produce, with llvm-opt, a _opt.bc bitcode file. Let's take a mymsetest.pas as example. mymsetest.pas ---> mymsetest.bc ---> mymsetest_opt.bc And finally llvm-link does the .bin executable. (This was not yet implemented in MSElang but it is easy: just do: $ llvm-link -o=/the/dir/mymsetest_opt.bin /the/dir/mymsetest_opt.bc mymsetest_opt.bc ---> mymsetest.bin And it works! Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ _______________________________________________ mseide-msegui-talk mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

