From 2543f7030bff80d08cb0229ae32bda4fde307b72 Mon Sep 17 00:00:00 2001 From: dim Date: Wed, 5 Jan 2011 22:24:33 +0000 Subject: On i386 and amd64, consistently use the following options whenever we want to avoid using any "advanced" CPU features: -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float --- sys/boot/pc98/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/boot/pc98') diff --git a/sys/boot/pc98/Makefile.inc b/sys/boot/pc98/Makefile.inc index 641fbca8..62cfc1d 100644 --- a/sys/boot/pc98/Makefile.inc +++ b/sys/boot/pc98/Makefile.inc @@ -6,7 +6,7 @@ BINDIR?= /boot LOADER_ADDRESS?=0x200000 CFLAGS+= -ffreestanding -mpreferred-stack-boundary=2 \ - -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 \ + -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float \ -Os -DPC98 LDFLAGS+= -nostdlib -- cgit v1.1