gcc: select the appropriate BR2_TOOLCHAIN_GCC_AT_LEAST_* option
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tue, 4 Aug 2015 18:00:34 +0000 (20:00 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 5 Aug 2015 08:40:29 +0000 (10:40 +0200)
This commit wires up the gcc version dependency mechanism in the
internal toolchain backend by making the gcc version choice in the gcc
package Config.in.host select the appropriate
BR2_TOOLCHAIN_GCC_AT_LEAST_* option.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
package/gcc/Config.in.host

index 93c903261d8303a56b1e4a7a264499c2ea2aa2a8..baa795607007592983b332273e76cba17797715b 100644 (file)
@@ -34,6 +34,7 @@ choice
                # musl patches only for gcc 4.7+
                depends on !BR2_TOOLCHAIN_BUILDROOT_MUSL
                select BR2_GCC_NEEDS_MPC
+               select BR2_TOOLCHAIN_GCC_AT_LEAST_4_5
 
        config BR2_GCC_VERSION_4_7_X
                bool "gcc 4.7.x"
@@ -50,6 +51,7 @@ choice
                # Broken or unsupported x86 cores
                depends on !BR2_x86_jaguar && !BR2_x86_steamroller
                select BR2_GCC_NEEDS_MPC
+               select BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
 
        config BR2_GCC_VERSION_4_8_X
                bool "gcc 4.8.x"
@@ -64,12 +66,15 @@ choice
                depends on !((BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el) && BR2_BINUTILS_VERSION_2_25_X)
                select BR2_GCC_NEEDS_MPC
                select BR2_GCC_SUPPORTS_GRAPHITE
+               select BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
 
        config BR2_GCC_VERSION_4_8_ARC
                bool "gcc 4.8-arc"
                # Only supported architecture
                depends on BR2_arc
                select BR2_GCC_NEEDS_MPC
+               select BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
+
 
        config BR2_GCC_VERSION_4_9_X
                bool "gcc 4.9.x"
@@ -78,6 +83,7 @@ choice
                # PR60102 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60102
                select BR2_GCC_NEEDS_MPC
                select BR2_GCC_SUPPORTS_GRAPHITE
+               select BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
 
        config BR2_GCC_VERSION_5_X
                bool "gcc 5.x"
@@ -85,6 +91,7 @@ choice
                depends on !BR2_arc
                select BR2_GCC_NEEDS_MPC
                select BR2_GCC_SUPPORTS_GRAPHITE
+               select BR2_TOOLCHAIN_GCC_AT_LEAST_5
 
 endchoice