From f53dc31bb3ef387338a7678581e8c7d587da8d2c Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 15 Nov 2022 19:21:20 -0800 Subject: [PATCH] src.opts.mk: Disable all of LLVM if C++ support is disabled. Reviewed by: imp, emaste Differential Revision: https://reviews.freebsd.org/D36891 --- share/mk/src.opts.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/share/mk/src.opts.mk b/share/mk/src.opts.mk index 4c0913474ef..ff8c359acc4 100644 --- a/share/mk/src.opts.mk +++ b/share/mk/src.opts.mk @@ -380,6 +380,9 @@ MK_KERBEROS_SUPPORT:= no .if ${MK_CXX} == "no" MK_CLANG:= no +MK_LLD:= no +MK_LLDB:= no +MK_LLVM_BINUTILS:= no MK_GOOGLETEST:= no MK_OFED:= no MK_OPENMP:= no