svn commit: r276819 - head/lib/clang/libllvmaarch64disassembler
Ed Maste
emaste at FreeBSD.org
Thu Jan 8 14:26:50 UTC 2015
Author: emaste
Date: Thu Jan 8 14:26:49 2015
New Revision: 276819
URL: https://svnweb.freebsd.org/changeset/base/276819
Log:
Fix WITH_LLDB build
A build with WITH_LLDB and not WITH_CLANG_EXTRAS failed after r276783.
Reported by: rodrigc
Modified:
head/lib/clang/libllvmaarch64disassembler/Makefile
Modified: head/lib/clang/libllvmaarch64disassembler/Makefile
==============================================================================
--- head/lib/clang/libllvmaarch64disassembler/Makefile Thu Jan 8 11:16:21 2015 (r276818)
+++ head/lib/clang/libllvmaarch64disassembler/Makefile Thu Jan 8 14:26:49 2015 (r276819)
@@ -8,7 +8,7 @@ SRCDIR= lib/Target/AArch64/Disassembler
INCDIR= lib/Target/AArch64
SRCS= AArch64Disassembler.cpp
-.if ${MK_CLANG_EXTRAS} != "no"
+.if ${MK_CLANG_EXTRAS} != "no" || .${MK_LLDB} != "no"
SRCS+= AArch64ExternalSymbolizer.cpp
.endif
More information about the svn-src-all
mailing list