Add -mno-sse3 for prescott/nocona

This commit is contained in:
Andrey A. Chernov 2005-07-15 11:45:30 +00:00
parent 9c007cf29e
commit 64b3210d91
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=148045

View File

@ -31,7 +31,7 @@ CWARNFLAGS?= -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
#
.if ${MACHINE_ARCH} == "i386" && ${CC} != "icc"
CFLAGS+= -mno-align-long-strings -mpreferred-stack-boundary=2 \
-mno-mmx -mno-3dnow -mno-sse -mno-sse2
-mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3
INLINE_LIMIT?= 8000
.endif