gcc: move C++ support option next to Fortran/Objective-C
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Mon, 2 Sep 2013 16:06:32 +0000 (18:06 +0200)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 15 Sep 2013 20:58:03 +0000 (22:58 +0200)
The option to enable C++ support was still located in
toolchain/toolchain-buildroot/Config.in.2, with misc other toolchain
options. It seems more logical to have this option with the other
options to select the languages supported by the cross-compiler, so we
move it next to the Fortran/Objective-C options in
package/gcc/Config.in.host.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/gcc/Config.in.host
toolchain/toolchain-buildroot/Config.in.2

index a7dbbb629bdbd3395bdc06baf0bb0e846ba0d240..dbf0f204fba2ebc9180f50e220a391270703ad24 100644 (file)
@@ -112,6 +112,19 @@ config BR2_EXTRA_GCC_CONFIG_OPTIONS
          include. Those options are applied for all of the gcc
          initial, gcc intermediate and gcc final passes.
 
+config BR2_TOOLCHAIN_BUILDROOT_CXX
+       bool "Enable C++ support"
+       select BR2_INSTALL_LIBSTDCPP
+       depends on !(BR2_GCC_VERSION_4_2_2_AVR32_2_1_5 && \
+                    BR2_TOOLCHAIN_BUILDROOT_LOCALE)
+       help
+         Enable this option if you want your toolchain to support the
+         C++ language and you want C++ libraries to be installed on
+         your target system.
+
+comment "C++ support broken in uClibc with locale enabled with gcc 4.2"
+       depends on BR2_GCC_VERSION_4_2_2_AVR32_2_1_5 && BR2_TOOLCHAIN_BUILDROOT_LOCALE
+
 config BR2_INSTALL_OBJC
        bool "Enable Objective-C support"
        depends on !BR2_avr32
index bf27e6b73da45306509984a826086df59b18c8b0..1371c31ad5fb0df9b4d18486e532570aa1cded84 100644 (file)
@@ -4,19 +4,6 @@ if BR2_TOOLCHAIN_BUILDROOT
 
 comment "Toolchain Options"
 
-config BR2_TOOLCHAIN_BUILDROOT_CXX
-       bool "Enable C++ support"
-       select BR2_INSTALL_LIBSTDCPP
-       depends on !(BR2_GCC_VERSION_4_2_2_AVR32_2_1_5 && \
-                    BR2_TOOLCHAIN_BUILDROOT_LOCALE)
-       help
-         Enable this option if you want your toolchain to support the
-         C++ language and you want C++ libraries to be installed on
-         your target system.
-
-comment "C++ support broken in uClibc with locale enabled with gcc 4.2"
-       depends on BR2_GCC_VERSION_4_2_2_AVR32_2_1_5 && BR2_TOOLCHAIN_BUILDROOT_LOCALE
-
 config BR2_TOOLCHAIN_BUILDROOT_USE_SSP
        bool "Enable stack protection support"
        help