Re: [Development] Using gcc to build arm version

2012-10-08 Thread song.7.liu
[mailto:development-bounces+song.7.liu=nokia@qt-project.org] On Behalf Of Liu Song.7 (Nokia-MP/Beijing) Sent: Monday, October 08, 2012 1:38 PM To: thiago.macie...@intel.com; development@qt-project.org Subject: Re: [Development] Using gcc to build arm version readelf -s -W libsupc++.a | grep UND, still shows

Re: [Development] Using gcc to build arm version

2012-10-08 Thread song.7.liu
To: thiago.macie...@intel.com; development@qt-project.org Subject: Re: [Development] Using gcc to build arm version Another thing: it seems that the libstdc++.so is based on Linux OS, so it can't be used for target build... So for the gcc/g++, is there a standalone library for c++ support ? Thanks

[Development] Using gcc to build arm version

2012-10-07 Thread song.7.liu
Hi, We are building the mesa for Qt, and the gcc is used to build out ARM version. But the bellow symbols is reported as undefined: _ZTVN10__cxxabiv120__si_class_type_infoE _ZTVN10__cxxabiv121__vmi_class_type_infoE _ZTVN10__cxxabiv117__class_type_infoE These symbols should be provided by

Re: [Development] Using gcc to build arm version

2012-10-07 Thread Lincoln Ramsay
On 08/10/12 14:57, song.7@nokia.com wrote: We are building the mesa for Qt, and the gcc is used to build out ARM version. But the bellow symbols is reported as undefined: _ZTVN10__cxxabiv120__si_class_type_infoE _ZTVN10__cxxabiv121__vmi_class_type_infoE

Re: [Development] Using gcc to build arm version

2012-10-07 Thread song.7.liu
: [Development] Using gcc to build arm version On 08/10/12 14:57, song.7@nokia.commailto:song.7@nokia.com wrote: We are building the mesa for Qt, and the gcc is used to build out ARM version. But the bellow symbols is reported as undefined: _ZTVN10__cxxabiv120__si_class_type_infoE

Re: [Development] Using gcc to build arm version

2012-10-07 Thread Lincoln Ramsay
On 08/10/12 15:09, song.7@nokia.com wrote: collect2 (4.4.1) is used to link. If you're linking something that includes C++ you should really use g++ as the linker. If you're going to invoke ld directly, you need to ensure the appropriate flags are set so it includes the C++ runtime.

Re: [Development] Using gcc to build arm version

2012-10-07 Thread Thiago Macieira
On segunda-feira, 8 de outubro de 2012 15.18.10, Lincoln Ramsay wrote: On 08/10/12 15:09, song.7@nokia.com wrote: collect2 (4.4.1) is used to link. If you're linking something that includes C++ you should really use g++ as the linker. If you're going to invoke ld directly, you need

Re: [Development] Using gcc to build arm version

2012-10-07 Thread song.7.liu
-bounces+song.7.liu=nokia@qt-project.org] On Behalf Of ext Thiago Macieira Sent: Monday, October 08, 2012 1:24 PM To: development@qt-project.org Subject: Re: [Development] Using gcc to build arm version On segunda-feira, 8 de outubro de 2012 15.18.10, Lincoln Ramsay wrote: On 08/10/12 15:09