mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-26 16:18:31 +00:00
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
36 lines
749 B
Makefile
36 lines
749 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= lldbBreakpoint
|
|
|
|
SRCDIR= tools/lldb/source/Breakpoint
|
|
SRCS= Breakpoint.cpp \
|
|
BreakpointID.cpp \
|
|
BreakpointIDList.cpp \
|
|
BreakpointList.cpp \
|
|
BreakpointLocation.cpp \
|
|
BreakpointLocationCollection.cpp \
|
|
BreakpointLocationList.cpp \
|
|
BreakpointOptions.cpp \
|
|
BreakpointResolver.cpp \
|
|
BreakpointResolverAddress.cpp \
|
|
BreakpointResolverFileLine.cpp \
|
|
BreakpointResolverFileRegex.cpp \
|
|
BreakpointResolverName.cpp \
|
|
BreakpointSite.cpp \
|
|
BreakpointSiteList.cpp \
|
|
Stoppoint.cpp \
|
|
StoppointCallbackContext.cpp \
|
|
StoppointLocation.cpp \
|
|
Watchpoint.cpp \
|
|
WatchpointList.cpp \
|
|
WatchpointOptions.cpp
|
|
|
|
TGHDRS= DiagnosticCommonKinds \
|
|
DeclNodes \
|
|
StmtNodes \
|
|
CommentCommandList
|
|
|
|
.include "../lldb.lib.mk"
|