svn commit: r393756 - head/sysutils/u-boot-wandboard

Ian Lepore ian at FreeBSD.org
Sun Aug 9 01:52:17 UTC 2015


Author: ian (src committer)
Date: Sun Aug  9 01:52:16 2015
New Revision: 393756
URL: https://svnweb.freebsd.org/changeset/ports/393756

Log:
  Use gcc 4.9.2 to cross-compile u-boot for wandboard.
  
  Approved by:	rpaulo

Modified:
  head/sysutils/u-boot-wandboard/Makefile

Modified: head/sysutils/u-boot-wandboard/Makefile
==============================================================================
--- head/sysutils/u-boot-wandboard/Makefile	Sun Aug  9 01:47:54 2015	(r393755)
+++ head/sysutils/u-boot-wandboard/Makefile	Sun Aug  9 01:52:16 2015	(r393756)
@@ -11,7 +11,9 @@ COMMENT=	Cross-build U-Boot loader for W
 
 LICENSE=	GPLv2
 
-BUILD_DEPENDS=  arm-none-eabi-gcc:${PORTSDIR}/devel/arm-none-eabi-gcc
+BUILD_DEPENDS=	${CROSS_GCC}:${PORTSDIR}/devel/arm-none-eabi-gcc492
+
+CROSS_GCC=	arm-none-eabi-gcc-4.9.2
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	TechNexion
@@ -27,6 +29,7 @@ PLIST_FILES=	${U_BOOT_DIR}/u-boot.imx \
 		${U_BOOT_DIR}/README
 
 MAKE_ARGS+=	ARCH=arm \
+		CC=${CROSS_GCC} \
 		CROSS_COMPILE=arm-none-eabi- \
 		HOSTCC=cc
 


More information about the svn-ports-all mailing list