svn commit: r261603 - head/sys/boot/efi

Ed Maste emaste at FreeBSD.org
Fri Feb 7 16:28:41 UTC 2014


Author: emaste
Date: Fri Feb  7 16:28:40 2014
New Revision: 261603
URL: http://svnweb.freebsd.org/changeset/base/261603

Log:
  Don't force efi to a 32-bit build on amd64
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/boot/efi/Makefile.inc

Modified: head/sys/boot/efi/Makefile.inc
==============================================================================
--- head/sys/boot/efi/Makefile.inc	Fri Feb  7 15:26:19 2014	(r261602)
+++ head/sys/boot/efi/Makefile.inc	Fri Feb  7 16:28:40 2014	(r261603)
@@ -2,17 +2,10 @@
 
 BINDIR?=	/boot
 
-.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
+.if ${MACHINE_CPUARCH} == "i386"
 CFLAGS+=        -march=i386
 .endif
 
-.if ${MACHINE_CPUARCH} == "amd64"
-CFLAGS+=        -m32
-ACFLAGS+=       -m32
-LDFLAGS+=       -m elf_i386_fbsd
-AFLAGS+=        --32
-.endif
-
 # Options used when building app-specific efi components
 CFLAGS+=	-ffreestanding -fshort-wchar -Wformat
 LDFLAGS+=	-nostdlib


More information about the svn-src-head mailing list