Displaying 2 results from an estimated 2 matches for "65634ac3".
2008 Jun 18
0
[LLVMdev] Ответ: using dynamic libraries from bytecode?
On Jun 18, 2008, at 12:27 PM, Yaroslav Kavenchuk wrote:
> $ llvm-gcc.exe -I/mingw/include gcd_ui.c -L/mingw/lib -lgmp -o
> gcd_ui.ll -emit-llvm -S
Use
> $ llvm-as gcd_ui.ll -o gcd_ui.bc
Use llc gcd_ui.bc and then llvm-gcc.exe gcd_ui.s -L/mingw/lib -lgmp?
2008 Jun 18
4
[LLVMdev] Ответ: using dynamic libraries from bytecode?
Mike Stump wrote:
>> Is it possible to use dynamic library (*.so *.dll) from bytecode?
>> If "yes" - how?
>
> dlopen? That's be one way. Also, most systems have shared libraries
> in /usr/lib and these routines are meant to be linked against and
> used. For example, on darwin, there sinf is resolved from a shared
> library, you declare it and call it, as