Displaying 2 results from an estimated 2 matches for "linkonce__znk4llvm5apintngev".
2010 Sep 03
2
[LLVMdev] Cross-compiling LLVM with llvm-gcc produces a lot of warnings
.../[..]/build-llvm/Release/lib/libLLVMSupport.a(APInt.o): warning:
duplicate section `.text$linkonce__ZN4llvm5APIntlSEj' has
different size
/[..]/lib/gcc/i386-mingw32/4.2.1/../../../../i386-mingw32/bin/ld:
/[..]/build-llvm/Release/lib/libLLVMSupport.a(APInt.o): warning:
duplicate section `.text$linkonce__ZNK4llvm5APIntngEv' has
different size
Is this normal/known?
2010 Sep 03
0
[LLVMdev] Cross-compiling LLVM with llvm-gcc produces a lot of warnings
> /[..]/lib/gcc/i386-mingw32/4.2.1/../../../../i386-mingw32/bin/ld:
> /[..]/build-llvm/Release/lib/libLLVMSupport.a(APInt.o): warning:
> duplicate section `.text$linkonce__ZNK4llvm5APIntngEv' has
> different size
>
> Is this normal/known?
Yes, this is known problem. In fact it was here for ages, but
previously we just grabbed
one "instance" of linkonce function without checking whether other
copies are the same.
Starting from May we're also checking for the c...