From owner-svn-ports-head@freebsd.org Sun Aug 9 01:52:17 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BA33A9B1E2A; Sun, 9 Aug 2015 01:52:17 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB8DD10B; Sun, 9 Aug 2015 01:52:17 +0000 (UTC) (envelope-from ian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t791qHOJ076922; Sun, 9 Aug 2015 01:52:17 GMT (envelope-from ian@FreeBSD.org) Received: (from ian@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t791qHDs076921; Sun, 9 Aug 2015 01:52:17 GMT (envelope-from ian@FreeBSD.org) Message-Id: <201508090152.t791qHDs076921@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ian set sender to ian@FreeBSD.org using -f From: Ian Lepore Date: Sun, 9 Aug 2015 01:52:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393756 - head/sysutils/u-boot-wandboard X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 01:52:17 -0000 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