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
This commit is contained in:
parent
9be6dfed81
commit
55bb35a644
@ -365,6 +365,14 @@ __DEFAULT_YES_OPTIONS+=OPENMP
|
|||||||
__DEFAULT_NO_OPTIONS+=OPENMP
|
__DEFAULT_NO_OPTIONS+=OPENMP
|
||||||
.endif
|
.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>
|
.include <bsd.mkopt.mk>
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user