Date: Sun, 9 Aug 2015 01:52:17 +0000 (UTC) From: Ian Lepore <ian@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393756 - head/sysutils/u-boot-wandboard Message-ID: <201508090152.t791qHDs076921@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508090152.t791qHDs076921>