git: cc0bbd86088c - main - llvm12: Disable LLDB on non-x86 architectures
Brooks Davis
brooks at FreeBSD.org
Wed Apr 7 17:26:48 UTC 2021
The branch main has been updated by brooks:
URL: https://cgit.FreeBSD.org/ports/commit/?id=cc0bbd86088c545607a8585256adb8e3cfb132ad
commit cc0bbd86088c545607a8585256adb8e3cfb132ad
Author: Brooks Davis <brooks at FreeBSD.org>
AuthorDate: 2021-04-07 17:26:40 +0000
Commit: Brooks Davis <brooks at FreeBSD.org>
CommitDate: 2021-04-07 17:26:40 +0000
llvm12: Disable LLDB on non-x86 architectures
The 12.0.0 branch point hit point in the rework of FreeBSD debug targets
were non-x86 architectures are broken. For now, simply disable LLDB
builds on those platforms.
PR: 254082
---
devel/llvm12/Makefile | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/devel/llvm12/Makefile b/devel/llvm12/Makefile
index fca19e1ae6d0..afea308fdd6c 100644
--- a/devel/llvm12/Makefile
+++ b/devel/llvm12/Makefile
@@ -72,16 +72,16 @@ CMAKE_ARGS+= -DLLVM_ENABLE_TERMINFO=OFF
CFLAGS+= -DNDEBUG
CXXFLAGS+= -DNDEBUG
-OPTIONS_DEFINE= BE_AMDGPU CLANG DOCS EXTRAS LIT LLD LLD_LINK LLDB PYCLANG
+OPTIONS_DEFINE= BE_AMDGPU CLANG DOCS EXTRAS LIT LLD LLD_LINK PYCLANG
OPTIONS_DEFINE_aarch64= OPENMP
-OPTIONS_DEFINE_amd64= COMPILER_RT GOLD OPENMP
-OPTIONS_DEFINE_i386= COMPILER_RT OPENMP
+OPTIONS_DEFINE_amd64= COMPILER_RT GOLD LLDB OPENMP
+OPTIONS_DEFINE_i386= COMPILER_RT LLDB OPENMP
OPTIONS_DEFINE_powerpc64= GOLD OPENMP
OPTIONS_DEFINE_powerpc64le= GOLD OPENMP
-OPTIONS_DEFAULT= BE_AMDGPU BE_STANDARD CLANG EXTRAS LIT LLD LLD_LINK LLDB PYCLANG
+OPTIONS_DEFAULT= BE_AMDGPU BE_STANDARD CLANG EXTRAS LIT LLD LLD_LINK PYCLANG
OPTIONS_DEFAULT_aarch64= OPENMP
-OPTIONS_DEFAULT_amd64= COMPILER_RT GOLD OPENMP
-OPTIONS_DEFAULT_i386= COMPILER_RT OPENMP
+OPTIONS_DEFAULT_amd64= COMPILER_RT GOLD LLDB OPENMP
+OPTIONS_DEFAULT_i386= COMPILER_RT LLDB OPENMP
OPTIONS_DEFAULT_powerpc64= ${OPTIONS_DEFAULT_powerpc64_${OSREL:R}} OPENMP
OPTIONS_DEFAULT_powerpc64_13= GOLD
OPTIONS_DEFAULT_powerpc64_14= GOLD
More information about the dev-commits-ports-all
mailing list