svn commit: r364122 - head/share/mk

Alex Richardson arichardson at FreeBSD.org
Tue Aug 11 16:46:47 UTC 2020


Author: arichardson
Date: Tue Aug 11 16:46:43 2020
New Revision: 364122
URL: https://svnweb.freebsd.org/changeset/base/364122

Log:
  Add CLANG/LLD/LLD to BROKEN_OPTIONS when building on non-FreeBSD
  
  These tools require a bootstrap llvm-tblgen/clang-tblgen and that cannot
  be built with the current make infrastructure: the config header is not
  correct for Linux/macOS and we don't include the CMakeLists.txt in contrib
  so we can't generate one that would be correct.
  
  Reviewed By:	emaste, imp, dim
  Differential Revision: https://reviews.freebsd.org/D14245

Modified:
  head/share/mk/src.opts.mk

Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk	Tue Aug 11 16:46:38 2020	(r364121)
+++ head/share/mk/src.opts.mk	Tue Aug 11 16:46:43 2020	(r364122)
@@ -365,6 +365,14 @@ __DEFAULT_YES_OPTIONS+=OPENMP
 __DEFAULT_NO_OPTIONS+=OPENMP
 .endif
 
+.if ${.MAKE.OS} != "FreeBSD"
+# Building the target compiler requires building tablegen on the host
+# which is (currently) not possible on non-FreeBSD.
+BROKEN_OPTIONS+=CLANG LLD LLDB
+# The same also applies to the bootstrap LLVM.
+BROKEN_OPTIONS+=CLANG_BOOTSTRAP LLD_BOOTSTRAP
+.endif
+
 .include <bsd.mkopt.mk>
 
 #


More information about the svn-src-head mailing list