diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-08-10 14:54:47 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-08-10 14:54:47 +0200 |
commit | 9ca80d92e06694241fca95ed85f1883dd0f500c7 (patch) | |
tree | c23989e71f6b7210f19c8484697b367dfeb269c6 /package/gcc | |
parent | f0417f965f800585d6d39f2218ba81021ac085b1 (diff) | |
download | buildroot-9ca80d92e06694241fca95ed85f1883dd0f500c7.tar.gz buildroot-9ca80d92e06694241fca95ed85f1883dd0f500c7.zip |
gcc: disable C++ support for Blackfin
As discussed with Waldemar, the C++ support for Blackfin is currently
broken, and we don't have a fix in sight for the 2016.08
release. Therefore, this commit disables C++ support entirely on the
Blackfin architecture in the internal toolchain backend.
This will avoid a significant number of Blackfin build failures, that
occur when building C++ packages.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gcc')
-rw-r--r-- | package/gcc/Config.in.host | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host index 2b54959d0e..761a7495b0 100644 --- a/package/gcc/Config.in.host +++ b/package/gcc/Config.in.host @@ -120,6 +120,9 @@ config BR2_EXTRA_GCC_CONFIG_OPTIONS config BR2_TOOLCHAIN_BUILDROOT_CXX bool "Enable C++ support" select BR2_INSTALL_LIBSTDCPP + # C++ support currently broken for Blackfin, under + # investigation. + depends on !BR2_bfin help Enable this option if you want your toolchain to support the C++ language and you want C++ libraries to be installed on |