SteffenG
SteffenG

Reputation: 284

LLVM: bitcode with llvm-gcc (mingw) for windows

i'm currently building a small JIT compiler. For the language I need a runtime library for some special math functions. I think the best would be to compile the lib to bitcode and link it. The compiler should be integrated in a product and as of this, it must work under windows (VC10, 64bit).

So is it possible to build the math lib with the mingw llvm-gcc build an link it later with the JITed Code? Or are there any problems regarding the portability of the bitcode build with llvm-gcc under mingw? If there are problems, what solution would you suggest?

Upvotes: 3

Views: 784

Answers (1)

laanwj
laanwj

Reputation: 4377

Bitcode is in a portable format (at least given the same architecture); there is no difference between bitcode generated in Windows and bitcode generated in, for example, Linux or Cygwin.

Upvotes: 0

Related Questions