Displaying 1 result from an estimated 1 matches for "postprocesssignificanthit".
2012 Mar 29
1
[LLVMdev] Error Linking Math Library
....o'
done < files.txt
#export LLVM_LIB_SEARCH_PATH=/usr/lib
llvm-link *.o -o out.o.linked
llc out.o.linked
gcc out.o.linked.s -o hmmer
**files.txt contains the name of the source files of the hmmer benchmark.
But "llc" gives me the following error -
/tmp/ccVq4r6d.o: In function `PostprocessSignificantHit':
out.o.linked:(.text+0xc1f6): undefined reference to `log'
/tmp/ccVq4r6d.o: In function `ParsePAMFile':
out.o.linked:(.text+0xc556): undefined reference to `log'
I tried setting the LLVM_LIB_SEARCH_PATH to find libm.a /libm.so, tried to
use the -L option of llvm-ld, but same error...