e8f1392d95
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
19 lines
308 B
Makefile
19 lines
308 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= lldbUtility
|
|
|
|
SRCDIR= tools/lldb/source/Utility
|
|
SRCS= ARM_DWARF_Registers.cpp \
|
|
KQueue.cpp \
|
|
PseudoTerminal.cpp \
|
|
Range.cpp \
|
|
RefCounter.cpp \
|
|
SharingPtr.cpp \
|
|
StringExtractor.cpp \
|
|
StringExtractorGDBRemote.cpp \
|
|
TimeSpecTimeout.cpp
|
|
|
|
.include "../lldb.lib.mk"
|