51ba585f88
This connects LLDB to the build, but it is disabled by default. Add WITH_LLDB= to src.conf to build it. Note that LLDB requires a C++11 compiler so is disabled on platforms using GCC. Approved by: re (gjb) Sponsored by: DARPA, AFRL
35 lines
456 B
Makefile
35 lines
456 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
SUBDIR= clang clang-tblgen tblgen
|
|
|
|
.if !defined(TOOLS_PREFIX)
|
|
.if ${MK_CLANG_EXTRAS} != "no"
|
|
SUBDIR+=bugpoint \
|
|
llc \
|
|
lli \
|
|
llvm-ar \
|
|
llvm-as \
|
|
llvm-bcanalyzer \
|
|
llvm-diff \
|
|
llvm-dis \
|
|
llvm-extract \
|
|
llvm-link \
|
|
llvm-mc \
|
|
llvm-nm \
|
|
llvm-objdump \
|
|
llvm-prof \
|
|
llvm-ranlib \
|
|
llvm-rtdyld \
|
|
macho-dump \
|
|
opt
|
|
.endif
|
|
|
|
.if ${MK_LLDB} != "no"
|
|
SUBDIR+=lldb
|
|
.endif
|
|
.endif # TOOLS_PREFIX
|
|
|
|
.include <bsd.subdir.mk>
|