Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Aug 2020 16:46:43 +0000 (UTC)
From:      Alex Richardson <arichardson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r364122 - head/share/mk
Message-ID:  <202008111646.07BGkhG0013698@repo.freebsd.org>

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



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