Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Aug 2015 14:50:37 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r287257 - head/sys/boot/libstand32
Message-ID:  <201508281450.t7SEobOr022127@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Fri Aug 28 14:50:36 2015
New Revision: 287257
URL: https://svnweb.freebsd.org/changeset/base/287257

Log:
  Add back missing -m32 for amd64 and powerpc64 that was lost
  in the move to bsd.stand.mk.

Modified:
  head/sys/boot/libstand32/Makefile

Modified: head/sys/boot/libstand32/Makefile
==============================================================================
--- head/sys/boot/libstand32/Makefile	Fri Aug 28 14:26:11 2015	(r287256)
+++ head/sys/boot/libstand32/Makefile	Fri Aug 28 14:50:36 2015	(r287257)
@@ -19,6 +19,9 @@ LIB=		stand
 INTERNALLIB=
 MK_PROFILE=	no
 NO_PIC=
+.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "powerpc64"
+CFLAGS+=	-m32 -I.
+.endif
 
 WARNS?=		0
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508281450.t7SEobOr022127>