Ed Maste e8f1392d95 Add LLDB bmake infrastructure
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
2013-09-20 01:52:02 +00:00

40 lines
777 B
Makefile

# $FreeBSD$
.include <bsd.own.mk>
LIB= lldbExpression
SRCDIR= tools/lldb/source/Expression
SRCS= ASTDumper.cpp \
ASTResultSynthesizer.cpp \
ASTStructExtractor.cpp \
ClangASTSource.cpp \
ClangExpressionDeclMap.cpp \
ClangExpressionParser.cpp \
ClangExpressionVariable.cpp \
ClangFunction.cpp \
ClangPersistentVariables.cpp \
ClangUserExpression.cpp \
ClangUtilityFunction.cpp \
DWARFExpression.cpp \
ExpressionSourceCode.cpp \
IRDynamicChecks.cpp \
IRExecutionUnit.cpp \
IRForTarget.cpp \
IRInterpreter.cpp \
IRMemoryMap.cpp \
Materializer.cpp
TGHDRS= DiagnosticCommonKinds \
DeclNodes \
StmtNodes \
CommentCommandList \
AttrList \
Attrs \
AttrParsedAttrList \
DiagnosticFrontendKinds \
DiagnosticSemaKinds \
Intrinsics
.include "../lldb.lib.mk"