search for: __thenan_sf

Displaying 4 results from an estimated 4 matches for "__thenan_sf".

2007 May 22
0
[LLVMdev] Compiling llvm-gcc in linux/ppc
...macros that would protect these errors from happening. I made some modifications that add #if TARGET_MACHO. Now the error is a linkage problem: /home/varth/project/llvm-cvs/llvm-gcc4/obj/gcc/xgcc: symbol lookup error: /home/varth/project/llvm-cvs/llvm-gcc4/obj/gcc/libgcc_s.so.1: undefined symbol: __thenan_sf And even if I force the definition of thenan_sf with const fp_number_type __thenan_sf = { CLASS_SNAN, 0, 0, {(fractype) 0} }; I still get the error. Cheers, Nicolas Nicolas Geoffray wrote: > Chris Lattner wrote: > >> This looks like you're compiling llvm-gcc3, which is quite...
2007 May 23
2
[LLVMdev] Compiling llvm-gcc in linux/ppc
..._MACHO. ok. If you send a patch in that adds these, I would be happy to apply it. > Now the error is a linkage problem: > > /home/varth/project/llvm-cvs/llvm-gcc4/obj/gcc/xgcc: symbol lookup > error: /home/varth/project/llvm-cvs/llvm-gcc4/obj/gcc/libgcc_s.so.1: > undefined symbol: __thenan_sf > > And even if I force the definition of thenan_sf with > const fp_number_type __thenan_sf = { CLASS_SNAN, 0, 0, {(fractype) 0} }; > > I still get the error. Unfortunately, I really don't know. I assume this is supposed to be coming from gcc/config/fp-bit.c, but I don't k...
2007 May 15
2
[LLVMdev] Compiling llvm-gcc in linux/ppc
Chris Lattner wrote: > > This looks like you're compiling llvm-gcc3, which is quite dead by now. > Please follow these instructions: > http://llvm.org/docs/CFEBuildInstrs.html > > Oups, sorry for that. Here is the error message with the latest svn version: gcc -c -g -O2 -DIN_GCC -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -pedantic
2007 May 23
0
[LLVMdev] Compiling llvm-gcc in linux/ppc
...ot work -- maybe there's a script somewhere that misbehaves) >> Now the error is a linkage problem: >> >> /home/varth/project/llvm-cvs/llvm-gcc4/obj/gcc/xgcc: symbol lookup >> error: /home/varth/project/llvm-cvs/llvm-gcc4/obj/gcc/libgcc_s.so.1: >> undefined symbol: __thenan_sf >> >> And even if I force the definition of thenan_sf with >> const fp_number_type __thenan_sf = { CLASS_SNAN, 0, 0, {(fractype) 0} }; >> >> I still get the error. >> > > Unfortunately, I really don't know. I assume this is supposed to be > co...