From 4669413153ac9e0365361b48db4e2a0cc5e37ef4 Mon Sep 17 00:00:00 2001 From: nyan Date: Mon, 15 Oct 2007 14:20:24 +0000 Subject: Optimize for size on pc98. It enables to boot a kernel again. I don't know what's wrong (loader, boot2 or others), but this change is effective. Tested by: NAKAJI Hiroyuki MFC after: 3 days --- lib/libstand/Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/libstand') diff --git a/lib/libstand/Makefile b/lib/libstand/Makefile index a06cf51..c2fc7a4 100644 --- a/lib/libstand/Makefile +++ b/lib/libstand/Makefile @@ -22,6 +22,9 @@ CFLAGS+= -mno-mmx -mno-3dnow -mno-sse -mno-sse2 .if ${MACHINE_ARCH} == "i386" CFLAGS+= -mno-sse3 .endif +.if ${MACHINE} == "pc98" +CFLAGS+= -Os +.endif .if ${MACHINE_ARCH} == "powerpc" CFLAGS+= -msoft-float -D_STANDALONE .endif -- cgit v1.1