search for: libtau

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

Did you mean: libtar
2006 Apr 03
2
[LLVMdev] lli: problem finding external symbol
...now passing -Wl,-disable-inlining and -Wa,-disable-inlining, and having it generate LLVM bytecode, then running opt -inlining to generate versions with different thresholds. However, from there I can't run the bytecode with lli - I get the following error: $ lli -load=/home/mmccrack/linux/lib/libTau.sh leo-inline-300-tau.bc ERROR: Program used external function '__llvm_cxxeh_allocate_exception' which could not be resolved! lli((anonymous namespace)::PrintStackTrace()+0x18)[0x8629a74] lli((anonymous namespace)::SignalHandler(int)+0xfe)[0x8629cfc] /lib/tls/libc.so.6[0x4d9eb8] /lib/tls/li...
2006 Apr 03
0
[LLVMdev] lli: problem finding external symbol
On Mon, 3 Apr 2006, Michael McCracken wrote: > the bytecode with lli - I get the following error: > > $ lli -load=/home/mmccrack/linux/lib/libTau.sh leo-inline-300-tau.bc > ERROR: Program used external function > '__llvm_cxxeh_allocate_exception' which could not be resolved! This is most likely because you are trying to link with llvmgcc, not with llvm-g++. Make sure that the problem is linked with llvm-g++ and this should...