Crosstool-ng g++ not compiling c++11 std::current_exception

a 夏天 提交于 2019-12-11 04:54:19

问题


I build a gcc toolchain using Crosstool-ng, but the resulting g++ does not compile and/or link C++11 exceptions.

If I try to compile:

#include <exception>

int main()
{
    std::current_exception();
}

via:

arm-none-linux-gnueabihf-g++ -std=c++11 foo.cpp

I get:

foo.cpp: In function 'int main()':
foo.cpp:5:9: error: 'current_exception' is not a member of 'std'
         std::current_exception();
         ^~~

However, if I additionally provide cortex-a9 as cpu the haviour changes:

arm-none-linux-gnueabihf-g++ -mcpu=cortex-a9 -std=c++11 foo.cpp

results in:

/tmp/cc13AEjE.o: In function `main':
foo.cpp:(.text+0x14): undefined reference to `std::current_exception()'
foo.cpp:(.text+0x20): undefined reference to 
`std::__exception_ptr::exception_ptr::~exception_ptr()'
collect2: error: ld returned 1 exit status

I greped within the toolchain for current_exception and it seems good for me:

grep -r -e current_exception arm-none-linux-gnueabihf/


Binary file arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/sysroot/lib/libstdc++.so.6.0.22 matches
Binary file arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/sysroot/lib/libstdc++.a matches
Binary file arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/sysroot/lib/libsupc++.a matches
arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/6.3.0/cxxabi.h:  __cxa_current_exception_type() _GLIBCXX_NOTHROW __attribute__ ((__pure__));
arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/6.3.0/future:     (*_M_result)->_M_error = current_exception();
arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/6.3.0/future:     (*_M_result)->_M_error = current_exception();
arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/6.3.0/bits/exception_ptr.h:  exception_ptr current_exception() _GLIBCXX_USE_NOEXCEPT;
arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/6.3.0/bits/exception_ptr.h:      friend exception_ptr std::current_exception() _GLIBCXX_USE_NOEXCEPT;
arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/6.3.0/bits/exception_ptr.h:     return current_exception();
arm-none-linux-gnueabihf/arm-none-linux-    gnueabihf/include/c++/6.3.0/bits/nested_exception.h:    nested_exception()     noexcept : _M_ptr(current_exception()) { }

The settings I used for Crosstool-ng are:

arm-none-linux-gnueabihf/bin/arm-none-linux-gnueabihf-g++ -v

Using built-in specs.
COLLECT_GCC=x-tools/arm-none-linux-gnueabihf/bin/arm-none-linux-gnueabihf-g++
COLLECT_LTO_WRAPPER=/home/builduser/x-tools/arm-none-linux-gnueabihf/libexec/gcc/arm-none-linux-gnueabihf/6.3.0/lto-wrapper
Target: arm-none-linux-gnueabihf
Configured with: /home/builduser/build/.build/src/gcc-6.3.0/configure 
--build=x86_64-build_pc-linux-gnu 
--host=x86_64-build_pc-linux-gnu 
--target=arm-none-linux-gnueabihf 
--prefix=/home/builduser/x-tools/arm-none-linux-gnueabihf 
--with-sysroot=/home/builduser/x-tools/arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/sysroot 
--enable-languages=c,c++ 
--with-float=hard 
--with-pkgversion='crosstool-NG crosstool-ng-1.23.0' 
--disable-sjlj-exceptions 
--enable-__cxa_atexit 
--disable-libmudflap 
--disable-libgomp 
--disable-libssp 
--disable-libquadmath 
--disable-libquadmath-support 
--disable-libsanitizer 
--disable-libmpx 
--with-gmp=/home/builduser/build/.build/arm-none-linux-gnueabihf/buildtools 
--with-mpfr=/home/builduser/build/.build/arm-none-linux-gnueabihf/buildtools 
--with-mpc=/home/builduser/build/.build/arm-none-linux-gnueabihf/buildtools 
--with-isl=/home/builduser/build/.build/arm-none-linux-gnueabihf/buildtools 
--disable-lto 
--with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++ -lm' 
--enable-threads=posix 
--enable-target-optspace 
--disable-plugin 
--disable-nls 
--disable-multilib 
--with-local-prefix=/home/builduser/x-tools/arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/sysroot 
--enable-long-long
Thread model: posix
gcc version 6.3.0 (crosstool-NG crosstool-ng-1.23.0) 

Building a std::array example works fine.

EDIT:

If I include the CT_ARCH_CPU="cortex-a9" option to my crostool-ng configuration (which leads to a --with-cpu=cortex-a9 within g++) the std::current_exception example works fine.

So the question is:

Why does the cpu variant the compiler should generate code for and the way the cpu variant is told to the toolchain (-mcpu at runtime vs. inbuild --with-cpu) is influencing the ability to compile/link std::current_exception?

来源:https://stackoverflow.com/questions/44758575/crosstool-ng-g-not-compiling-c11-stdcurrent-exception

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!