diff options
author | ache <ache@FreeBSD.org> | 2005-07-15 12:22:14 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2005-07-15 12:22:14 +0000 |
commit | 659d46f587a9288b5fe80abeac35340de3e9812d (patch) | |
tree | a8736231f250c5e78f91e49d8c272c4ecebad3ed /sys/boot/ficl | |
parent | 542973bac5b2980b64cf33e741bd2d2d83669f34 (diff) | |
download | FreeBSD-src-659d46f587a9288b5fe80abeac35340de3e9812d.zip FreeBSD-src-659d46f587a9288b5fe80abeac35340de3e9812d.tar.gz |
Add -mno-sse3 for prescott/nocona
Diffstat (limited to 'sys/boot/ficl')
-rw-r--r-- | sys/boot/ficl/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/boot/ficl/Makefile b/sys/boot/ficl/Makefile index 55abdf7..bc5fb52 100644 --- a/sys/boot/ficl/Makefile +++ b/sys/boot/ficl/Makefile @@ -14,6 +14,9 @@ CFLAGS+= -mno-fp-regs -Os CFLAGS+= -mpreferred-stack-boundary=2 CFLAGS+= -mno-mmx -mno-3dnow -mno-sse -mno-sse2 .endif +.if ${MACHINE_ARCH} == "i386" +CFLAGS+= -mno-sse3 +.endif .if ${MACHINE_ARCH} == "powerpc" CFLAGS+= -msoft-float .endif |