diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2015-03-03 12:52:30 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-03-04 22:16:41 +0100 |
commit | 50451998f0e39d46675e9b1638ed4e38aae3ceba (patch) | |
tree | 15862bbae00c43e2ef1004cb686cfcdf26991590 /package/gcc | |
parent | 4274f758ed2b2f9a1440b3f8e4c8bae25786e807 (diff) | |
download | buildroot-50451998f0e39d46675e9b1638ed4e38aae3ceba.tar.gz buildroot-50451998f0e39d46675e9b1638ed4e38aae3ceba.zip |
arch: add support for AMD steamroller
Add support for AMD steamroller optimizations, available in gcc 4.8+ as
bdver3.
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host index dd61f51a96..e07d881444 100644 --- a/package/gcc/Config.in.host +++ b/package/gcc/Config.in.host @@ -29,7 +29,7 @@ choice # SPARC -mcpu=leon3 appeared in gcc 4.8.x depends on !BR2_sparc_leon3 # Broken or unsupported X86 cores - depends on !BR2_x86_corei7 && !BR2_x86_jaguar + depends on !BR2_x86_corei7 && !BR2_x86_jaguar && !BR2_x86_steamroller # ARM EABIhf support appeared in gcc 4.6 depends on !BR2_ARM_EABIHF # musl patches only for gcc 4.7+ @@ -49,7 +49,7 @@ choice # SPARC -mcpu=leon3 appeared in gcc 4.8.x depends on !BR2_sparc_leon3 # Broken or unsupported x86 cores - depends on !BR2_x86_jaguar + depends on !BR2_x86_jaguar && !BR2_x86_steamroller select BR2_GCC_NEEDS_MPC config BR2_GCC_VERSION_4_8_X |