I am currently creating a small JIT compiler. For the language, I need a runtime library for some special math functions. I think it would be best to compile lib for the bit code and link it. The compiler must be integrated into the product, and because of this, it must work under windows (VC10, 64 bit).
So, is it possible to build math lib using mingw llvm-gcc to build the link later with JITed Code? Or are there any problems with portability of building bit code using llvm-gcc under mingw? If there are problems, what solution would you suggest?
source
share