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

Posted by TheShow on Stack Overflow See other posts from Stack Overflow or by TheShow
Published on 2010-05-05T19:44:00Z Indexed on 2010/05/05 19:48 UTC
Read the original article Hit count: 436

Filed under:
|
|

Hi,

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?

© Stack Overflow or respective owner

Related posts about llvm

Related posts about llvm-gcc