svn commit: r243447 - stable/8/sys/boot/pc98

Takahashi Yoshihiro nyan at FreeBSD.org
Fri Nov 23 13:18:26 UTC 2012


Author: nyan
Date: Fri Nov 23 13:18:26 2012
New Revision: 243447
URL: http://svnweb.freebsd.org/changeset/base/243447

Log:
  MFC: r242855, r242865
  
    - use -march=i386 for both i386 and amd64 builds.
    - cosmetic changes to reduce diffs against i386.

Modified:
  stable/8/sys/boot/pc98/Makefile.inc
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/boot/   (props changed)

Modified: stable/8/sys/boot/pc98/Makefile.inc
==============================================================================
--- stable/8/sys/boot/pc98/Makefile.inc	Fri Nov 23 13:17:18 2012	(r243446)
+++ stable/8/sys/boot/pc98/Makefile.inc	Fri Nov 23 13:18:26 2012	(r243447)
@@ -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 \
-		-Os -DPC98
+CFLAGS+=	-march=i386 -ffreestanding -mpreferred-stack-boundary=2 \
+		-mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3
+CFLAGS+=	-Os -DPC98
 LDFLAGS+=	-nostdlib
 
 # BTX components


More information about the svn-src-all mailing list