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
57 lines
1.3 KiB
Makefile
57 lines
1.3 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= lldbInterpreter
|
|
|
|
SRCDIR= tools/lldb/source/Interpreter
|
|
SRCS= Args.cpp \
|
|
CommandHistory.cpp \
|
|
CommandInterpreter.cpp \
|
|
CommandObject.cpp \
|
|
CommandObjectRegexCommand.cpp \
|
|
CommandObjectScript.cpp \
|
|
CommandReturnObject.cpp \
|
|
OptionGroupArchitecture.cpp \
|
|
OptionGroupBoolean.cpp \
|
|
OptionGroupFile.cpp \
|
|
OptionGroupFormat.cpp \
|
|
OptionGroupOutputFile.cpp \
|
|
OptionGroupPlatform.cpp \
|
|
OptionGroupString.cpp \
|
|
OptionGroupUInt64.cpp \
|
|
OptionGroupUUID.cpp \
|
|
OptionGroupValueObjectDisplay.cpp \
|
|
OptionValue.cpp \
|
|
OptionValueArch.cpp \
|
|
OptionValueArgs.cpp \
|
|
OptionValueArray.cpp \
|
|
OptionValueBoolean.cpp \
|
|
OptionValueDictionary.cpp \
|
|
OptionValueEnumeration.cpp \
|
|
OptionValueFileSpec.cpp \
|
|
OptionValueFileSpecLIst.cpp \
|
|
OptionValueFormat.cpp \
|
|
OptionValuePathMappings.cpp \
|
|
OptionValueProperties.cpp \
|
|
OptionValueRegex.cpp \
|
|
OptionValueSInt64.cpp \
|
|
OptionValueString.cpp \
|
|
OptionValueUInt64.cpp \
|
|
OptionValueUUID.cpp \
|
|
OptionGroupVariable.cpp \
|
|
OptionGroupWatchpoint.cpp \
|
|
Options.cpp \
|
|
Property.cpp \
|
|
PythonDataObjects.cpp \
|
|
ScriptInterpreter.cpp \
|
|
ScriptInterpreterNone.cpp \
|
|
ScriptInterpreterPython.cpp
|
|
|
|
TGHDRS= DiagnosticCommonKinds \
|
|
DeclNodes \
|
|
StmtNodes \
|
|
CommentCommandList
|
|
|
|
.include "../lldb.lib.mk"
|