summaryrefslogtreecommitdiffstats
path: root/Config.in
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-05-09 20:50:49 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-05-09 20:50:49 +0000
commit2430e9a4f5f809d9164edf64dd3eb87f9a14a5fc (patch)
treea9db7664e1d0b5d68f7cff21195352c321e940c9 /Config.in
parentdc00dbd0857a5bb5202eb8ae2dad97dd59f4bba8 (diff)
downloadmaster-31e0f0ae-2430e9a4f5f809d9164edf64dd3eb87f9a14a5fc.tar.gz
master-31e0f0ae-2430e9a4f5f809d9164edf64dd3eb87f9a14a5fc.tar.bz2
master-31e0f0ae-2430e9a4f5f809d9164edf64dd3eb87f9a14a5fc.zip
toolchain: eliminate the INSTALL_LIBSTDCPP config symbol and make c++ support mandatory - fixes recursive config symbol dependency issues
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 36594
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in24
1 files changed, 11 insertions, 13 deletions
diff --git a/Config.in b/Config.in
index 5c154691dd..9ad71e02cb 100644
--- a/Config.in
+++ b/Config.in
@@ -704,21 +704,19 @@ menu "Global build settings"
Note that this will make the system libraries incompatible with most of the packages
that are not selected during the build process
- if INSTALL_LIBSTDCPP
- choice
- prompt "Preferred standard C++ library"
- default USE_LIBSTDCXX if USE_EGLIBC
- default USE_UCLIBCXX
- help
- Select the preferred standard C++ library for all packages that support this.
+ choice
+ prompt "Preferred standard C++ library"
+ default USE_LIBSTDCXX if USE_EGLIBC
+ default USE_UCLIBCXX
+ help
+ Select the preferred standard C++ library for all packages that support this.
- config USE_UCLIBCXX
- bool "uClibc++"
+ config USE_UCLIBCXX
+ bool "uClibc++"
- config USE_LIBSTDCXX
- bool "libstdc++"
- endchoice
- endif
+ config USE_LIBSTDCXX
+ bool "libstdc++"
+ endchoice
endmenu