summaryrefslogtreecommitdiffstats
path: root/Config.in
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-05-09 20:50:49 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-05-09 20:50:49 +0000
commit9211713bc2e586f55d19f7b491fa2034833f0f05 (patch)
treef3ab4a8b33fa4787cc5c23a0fbb2fad99f59e247 /Config.in
parent3b5a35294b8a6f018bd4a6e935e3fe47cdcf7ca2 (diff)
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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36594 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 5c154691d..9ad71e02c 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