Date: Fri, 23 Nov 2012 13:18:26 +0000 (UTC) From: Takahashi Yoshihiro <nyan@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r243447 - stable/8/sys/boot/pc98 Message-ID: <201211231318.qANDIQw6020243@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211231318.qANDIQw6020243>