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
21 lines
464 B
Makefile
21 lines
464 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= lldbPluginProcessFreeBSD
|
|
|
|
# include_directories(.)
|
|
CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD
|
|
CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/POSIX
|
|
|
|
SRCDIR= tools/lldb/source/Plugins/Process/FreeBSD
|
|
SRCS= ProcessFreeBSD.cpp \
|
|
ProcessMonitor.cpp
|
|
|
|
TGHDRS= DiagnosticCommonKinds \
|
|
DeclNodes \
|
|
StmtNodes \
|
|
CommentCommandList
|
|
|
|
.include "../lldb.lib.mk"
|