search for: lmytmp1

Displaying 2 results from an estimated 2 matches for "lmytmp1".

Did you mean: mytmp1
2007 Mar 31
2
[LLVMdev] native libraries
...port native libraries? Furthermore, what exactly is meant by that? In particular, I have bytecode that I want to turn into a native executable and it needs to be linked against a dynamic (.so) library that I've created. So, I run the following command: > llvm-ld -native -o mytmp.exe -L. -lmytmp1 mytmp2.bc mytmp3.bc When I do so I get the following warning: > llvm-ld: warning: Supposed library 'mytmp1' isn't a library. However, the executable seems to work fine, and seems to find libmytmp1.so through LD_LIBRARY_PATH just fine. Is it safe to ignore the warning? What is me...
2007 Apr 01
0
[LLVMdev] native libraries
...amiliar with the code again to know. > > In particular, I have bytecode that I want to turn into a native > executable and it needs to be linked against a dynamic (.so) library > that I've created. So, I run the following command: > > > llvm-ld -native -o mytmp.exe -L. -lmytmp1 mytmp2.bc mytmp3.bc > > When I do so I get the following warning: > > > llvm-ld: warning: Supposed library 'mytmp1' isn't a library. > > However, the executable seems to work fine, and seems to find > libmytmp1.so through LD_LIBRARY_PATH just fine. Is it safe...