diff options
author | lloyd <[email protected]> | 2014-02-13 13:16:26 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-02-13 13:16:26 +0000 |
commit | 6af80db3b7697461e3f24d6ff7a306b1b9eea8a4 (patch) | |
tree | 44694079c4079dfaa00ba5548a9d66136cb595ea /src | |
parent | f7d1d1b1bf54089fba3d2f05ea651123066bde36 (diff) |
Also avoid tuning for 686
Diffstat (limited to 'src')
-rw-r--r-- | src/build-data/cc/gcc.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/build-data/cc/gcc.txt b/src/build-data/cc/gcc.txt index 0002abccd..365ec87f9 100644 --- a/src/build-data/cc/gcc.txt +++ b/src/build-data/cc/gcc.txt @@ -52,10 +52,11 @@ altivec -> "-maltivec" </isa_flags> <mach_opt> -# Avoid using -march=i[345]86, instead tune for generic +# Avoid using -march=i[3456]86, instead tune for generic i386 -> "-mtune=generic" i486 -> "-mtune=generic" i586 -> "-mtune=generic" +i686 -> "-mtune=generic" # Translate to GCC-speak nehalem -> "-march=corei7" |