svn commit: r531459 - head/sysutils/atf-master

Emmanuel Vadot manu at FreeBSD.org
Sat Apr 11 20:57:56 UTC 2020


Author: manu
Date: Sat Apr 11 20:57:55 2020
New Revision: 531459
URL: https://svnweb.freebsd.org/changeset/ports/531459

Log:
  sysutils/atf: Do not override CFLAGS when building
  
  ATF is built using -Os for most platform so don't pass the CFLAGS
  generated by the ports framework.
  This fix building atf-rk3399 with gcc 8.4.0

Modified:
  head/sysutils/atf-master/Makefile

Modified: head/sysutils/atf-master/Makefile
==============================================================================
--- head/sysutils/atf-master/Makefile	Sat Apr 11 19:58:53 2020	(r531458)
+++ head/sysutils/atf-master/Makefile	Sat Apr 11 20:57:55 2020	(r531459)
@@ -21,7 +21,7 @@ GH_TAGNAME=	${ATF_VERSION}
 
 SSP_UNSAFE=	yes
 MAKE_ENV+=	CROSS_COMPILE="aarch64-none-elf-"
-ALL_TARGET=	ARCH="aarch64" PLAT=${PLAT} V=1 bl31
+ALL_TARGET=	ARCH="aarch64" PLAT=${PLAT} V=1 CFLAGS= bl31
 
 # Default to the latest release
 ATF_VERSION?=	v2.1


More information about the svn-ports-all mailing list