Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Apr 2020 20:57:56 +0000 (UTC)
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r531459 - head/sysutils/atf-master
Message-ID:  <202004112057.03BKvu8n059879@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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