svn commit: r268305 - stable/10/release/arm

Glen Barber gjb at FreeBSD.org
Sun Jul 6 03:31:02 UTC 2014


Author: gjb
Date: Sun Jul  6 03:31:01 2014
New Revision: 268305
URL: http://svnweb.freebsd.org/changeset/base/268305

Log:
  MFC r268232:
    The u-boot tarball needed for some boards, BEAGLEBONE for
    example, explicitly hard-code gcc(1) as the compiler.
  
    Partially revert r264703, which did a post-chroot install
    of gcc(1).  This was initially removed because gcc(1) fails
    to build usr.bin/dtc/ causing the xdev target to fail.  So
    this time, move the gcc(1) installation after xdev is built.
  
    This change is likely applicable to stable/10 arm build
    failures, as well.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  stable/10/release/arm/release.sh
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/release/arm/release.sh
==============================================================================
--- stable/10/release/arm/release.sh	Sat Jul  5 21:50:59 2014	(r268304)
+++ stable/10/release/arm/release.sh	Sun Jul  6 03:31:01 2014	(r268305)
@@ -111,6 +111,9 @@ main() {
 			BATCH=1 FORCE_PKG_REGISTER=1 install clean distclean
 	done
 
+	eval chroot ${CHROOTDIR} make -C /usr/src/gnu/usr.bin/cc \
+		WITH_GCC=1 ${WORLD_FLAGS} -j1 obj depend all install
+
 	mkdir -p ${CHROOTDIR}/tmp/crochet/work
 	before_build
 	install_crochet


More information about the svn-src-all mailing list