svn commit: r305255 - head/targets/pseudo/bootstrap-tools

Bryan Drewery bdrewery at FreeBSD.org
Thu Sep 1 23:21:13 UTC 2016


Author: bdrewery
Date: Thu Sep  1 23:21:12 2016
New Revision: 305255
URL: https://svnweb.freebsd.org/changeset/base/305255

Log:
  DIRDEPS_BUILD: Fix 'make bootstrap-tools' not using the proper tblgen binaries.
  
  This was an incomplete item from r291561.  The host {clang,llvm}-tblgen
  binaries were used, rather than the ones built into the host stagedir by
  normal Makefile.depend dependencies on tblgen.
  
  MFC after:	1 week
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/targets/pseudo/bootstrap-tools/Makefile

Modified: head/targets/pseudo/bootstrap-tools/Makefile
==============================================================================
--- head/targets/pseudo/bootstrap-tools/Makefile	Thu Sep  1 23:21:08 2016	(r305254)
+++ head/targets/pseudo/bootstrap-tools/Makefile	Thu Sep  1 23:21:12 2016	(r305255)
@@ -78,6 +78,8 @@ BSTCENV= \
 BSTCARGS= \
 	${BSARGS:NDESTDIR=*:NOBJTOP=*:NOBJROOT=*:NMK_CROSS_COMPILER=*:NMK_CLANG=*:NMK_GCC=*} \
 	BUILD_DIRDEPS=yes \
+	LLVM_TBLGEN=${TOOLSDIR}/usr/bin/llvm-tblgen \
+	CLANG_TBLGEN=${TOOLSDIR}/usr/bin/clang-tblgen \
 	-DWITH_STAGING \
 	-DWITH_TOOLSDIR
 


More information about the svn-src-all mailing list