diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-07-18 08:10:41 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-07-18 19:56:06 +0200 |
commit | 275d5115dbb5afb3eaff185aa12315eb5deac8e3 (patch) | |
tree | e76b14df089b7438c1e2fe56c4bb3895a409256d /package/gcc | |
parent | f77ae6cfef4bab4a7591013104cdd4a47aa64390 (diff) | |
download | buildroot-275d5115dbb5afb3eaff185aa12315eb5deac8e3.tar.gz buildroot-275d5115dbb5afb3eaff185aa12315eb5deac8e3.zip |
gcc 4.9.x: Exclude for PPC SPE because of PR60102
Exclude gcc 4.9.x for PowerPC SPE toolchains because of an ICE
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60102
There's a patch available but it's somewhat intrusive with PPC in
general and hasn't been well tested yet.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gcc')
-rw-r--r-- | package/gcc/Config.in.host | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host index eaff929f7a..afed26b79f 100644 --- a/package/gcc/Config.in.host +++ b/package/gcc/Config.in.host @@ -59,6 +59,8 @@ choice config BR2_GCC_VERSION_4_9_X depends on !BR2_arc && !BR2_avr32 && !BR2_bfin && !BR2_sparc_sparchfleon && !BR2_sparc_sparchfleonv8 && !BR2_sparc_sparcsfleon && !BR2_sparc_sparcsfleonv8 && !BR2_sparc + # PR60102 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60102 + depends on !BR2_powerpc_SPE select BR2_GCC_NEEDS_MPC select BR2_GCC_SUPPORTS_GRAPHITE bool "gcc 4.9.x" |