Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Sep 2016 23:21:12 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r305255 - head/targets/pseudo/bootstrap-tools
Message-ID:  <201609012321.u81NLCsO009353@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609012321.u81NLCsO009353>