summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac10
1 files changed, 0 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac
index 308e8b662..23d9cc640 100644
--- a/configure.ac
+++ b/configure.ac
@@ -782,10 +782,6 @@ case "$host_or_hostalias" in
dnl special check for k7 cpu CC support
AC_TRY_CFLAGS("$sarchopt=athlon", k7cpu="athlon", k7cpu="i686")
- AC_TRY_CFLAGS("-msse",f_msse="-msse", f_msse="")
- AC_TRY_CFLAGS("-msse2",f_msse2="-msse2", f_msse2="")
- AC_TRY_CFLAGS("-m3dnow",f_m3dnow="-m3dnow", f_m3dnow="")
-
dnl add x86 specific gcc CFLAGS
CFLAGS="$CFLAGS -O3 -pipe -fomit-frame-pointer $f_af $f_al $f_aj $m_wm $m_psb -fexpensive-optimizations $f_si $f_nsa -ffast-math -funroll-loops -finline-functions"
@@ -814,7 +810,6 @@ case "$host_or_hostalias" in
case "$modelname" in
*Athlon* | *Duron* | *K7*)
archopt_val="$k7cpu"
- CFLAGS="$CFLAGS $f_m3dnow"
;;
esac
fi
@@ -822,26 +817,21 @@ case "$host_or_hostalias" in
;;
k6-2-* | k6-3-*)
archopt_val="k6-2"
- CFLAGS="$CFLAGS $f_m3dnow"
;;
k6-*)
archopt_val="k6"
;;
pentium3-*)
archopt_val="pentium3"
- CFLAGS="$CFLAGS $f_msse"
;;
pentium4-*)
archopt_val="pentium4"
- CFLAGS="$CFLAGS $f_msse2"
;;
athlon-4-* | athlon-xp-* | athlon-mp-*)
archopt_val="athlon-4"
- CFLAGS="$CFLAGS $f_m3dnow $f_msse"
;;
k7-* | athlon-tbird-* | athlon-*)
archopt_val="athlon"
- CFLAGS="$CFLAGS $f_m3dnow"
;;
esac