search for: _zn9__gnu_cxx10messages_ce

Displaying 3 results from an estimated 3 matches for "_zn9__gnu_cxx10messages_ce".

2004 Aug 19
4
[LLVMdev] Can't get llvmg++ to work
...on to LLVM. I can't successfully compile and execute a simple C++ program. The compiler seems to work, as it produces a.out and a.out.bc files, but I get a whole bunch of warnings: WARNING: Found global types that are not compatible: "struct.std::messages<wchar_t>"* %_ZN9__gnu_cxx10messages_cE [16 x sbyte]* %_ZN9__gnu_cxx10messages_cE WARNING: Found global types that are not compatible: "struct.std::messages<wchar_t>"* %_ZN9__gnu_cxx10messages_wE [16 x sbyte]* %_ZN9__gnu_cxx10messages_wE WARNING: Found global types that are not compatible:...
2003 Dec 22
2
[LLVMdev] hello.bc & binary code
...sT.o /tmp/ccb5CDSP.s gccld -o hello -L/home/yue/cfrontend/install/lib/gcc/i686-pc-linux-gnu/3.4-llvm -L/home/yue/cfrontend/install/lib/gcc/i686-pc-linux-gnu/3.4-llvm/../../.. /tmp/ccppFGsT.o -lstdc++ -lm -lc -lcrtend WARNING: Found global types that are not compatible: [16 x sbyte]* %_ZN9__gnu_cxx10messages_cE "struct.std::messages<char>"* %_ZN9__gnu_cxx10messages_cE WARNING: Found global types that are not compatible: [16 x sbyte]* %_ZN9__gnu_cxx10messages_wE "struct.std::messages<char>"* %_ZN9__gnu_cxx10messages_wE WARNING: Found global type...
2004 Aug 19
0
[LLVMdev] Can't get llvmg++ to work
...successfully compile and > execute a simple C++ program. The compiler seems to work, as it > produces a.out and a.out.bc files, but I get a whole bunch of warnings: > > WARNING: Found global types that are not compatible: > "struct.std::messages<wchar_t>"* %_ZN9__gnu_cxx10messages_cE > [16 x sbyte]* %_ZN9__gnu_cxx10messages_cE ... clip ... These are "normal" warnings. Essentially there are things getting linked together by gcc that are not the same type. gcc won't tell you about this (it can't) but we do. There's not much that can be done a...