diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/gnu-flags | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/config/gnu-flags b/config/gnu-flags index f081e55..84b7196 100644 --- a/config/gnu-flags +++ b/config/gnu-flags @@ -117,13 +117,19 @@ case "$cc_vendor-$cc_version" in case "$host_cpu_model" in # Hmm.. this might not catch Celerons, but it won't hurt them either... *Pro*|*II*|*III*|*IV*|*Athlon*) - arch="-march=i686" + # architecture-specific optimizations cause problems + # for some users who build binaries to be used on + # multiple architectures. + # arch="-march=i686" ;; esac ;; *-i686) - arch="-march=i686" + # architecture-specific optimizations cause problems + # for some users who build binaries to be used on + # multiple architectures. + # arch="-march=i686" ;; esac |