File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -1988,12 +1988,6 @@ tools are selected during the Xcode/Developer Tools installation.])
1988
1988
PROFILE_USE_CFLAGS="-GL -wd4624 -wd4952"
1989
1989
PROFILE_USE_LDFLAGS="-LTCG:PGUPDATE"
1990
1990
1991
- if test "$MSC_VER" -ge "1700"; then
1992
- dnl Visual C++ 2012 defaults to -arch:SSE2. Use -arch:IA32 to
1993
- dnl avoid requiring SSE2.
1994
- CFLAGS="$CFLAGS -arch:IA32"
1995
- fi
1996
-
1997
1991
if test "$MSC_VER" -ge "1800"; then
1998
1992
dnl Visual C++ 2013 requires -FS when parallel building with
1999
1993
dnl make -jN. If not specified, compiler sometimes emits C1041
@@ -2087,6 +2081,11 @@ tools are selected during the Xcode/Developer Tools installation.])
2087
2081
AC_DEFINE ( _AMD64_ )
2088
2082
else
2089
2083
AC_DEFINE ( _X86_ )
2084
+ if test -z "$GNU_CC" -a "$MSC_VER" -ge "1700"; then
2085
+ dnl Visual C++ 2012 defaults to -arch:SSE2. Use -arch:IA32
2086
+ dnl to avoid requiring SSE2.
2087
+ CFLAGS="$CFLAGS -arch:IA32"
2088
+ fi
2090
2089
fi
2091
2090
;;
2092
2091
x86_64)
You can’t perform that action at this time.
0 commit comments