svn commit: r243446 - stable/9/sys/boot/pc98
Takahashi Yoshihiro
nyan at FreeBSD.org
Fri Nov 23 13:17:18 UTC 2012
Author: nyan
Date: Fri Nov 23 13:17:18 2012
New Revision: 243446
URL: http://svnweb.freebsd.org/changeset/base/243446
Log:
MFC: r242855, r242865
- use -march=i386 for both i386 and amd64 builds.
- cosmetic changes to reduce diffs against i386.
Modified:
stable/9/sys/boot/pc98/Makefile.inc
Directory Properties:
stable/9/sys/ (props changed)
stable/9/sys/boot/ (props changed)
Modified: stable/9/sys/boot/pc98/Makefile.inc
==============================================================================
--- stable/9/sys/boot/pc98/Makefile.inc Fri Nov 23 13:09:20 2012 (r243445)
+++ stable/9/sys/boot/pc98/Makefile.inc Fri Nov 23 13:17:18 2012 (r243446)
@@ -5,9 +5,9 @@
BINDIR?= /boot
LOADER_ADDRESS?=0x200000
-CFLAGS+= -ffreestanding -mpreferred-stack-boundary=2 \
- -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float \
- -Os -DPC98
+CFLAGS+= -march=i386 -ffreestanding -mpreferred-stack-boundary=2 \
+ -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -msoft-float
+CFLAGS+= -Os -DPC98
LDFLAGS+= -nostdlib
# BTX components
More information about the svn-src-stable-9
mailing list