From 51ba585f88949f7d515cf6be9c32aa678838a67c Mon Sep 17 00:00:00 2001 From: emaste Date: Fri, 20 Sep 2013 01:52:02 +0000 Subject: 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 --- lib/clang/liblldbCommands/Makefile | 41 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 lib/clang/liblldbCommands/Makefile (limited to 'lib/clang/liblldbCommands') diff --git a/lib/clang/liblldbCommands/Makefile b/lib/clang/liblldbCommands/Makefile new file mode 100644 index 0000000..6709017 --- /dev/null +++ b/lib/clang/liblldbCommands/Makefile @@ -0,0 +1,41 @@ +# $FreeBSD$ + +.include + +LIB= lldbCommands + +SRCDIR= tools/lldb/source/Commands +SRCS= CommandCompletions.cpp \ + CommandObjectApropos.cpp \ + CommandObjectArgs.cpp \ + CommandObjectBreakpoint.cpp \ + CommandObjectBreakpointCommand.cpp \ + CommandObjectCommands.cpp \ + CommandObjectDisassemble.cpp \ + CommandObjectExpression.cpp \ + CommandObjectFrame.cpp \ + CommandObjectHelp.cpp \ + CommandObjectLog.cpp \ + CommandObjectMemory.cpp \ + CommandObjectMultiword.cpp \ + CommandObjectPlatform.cpp \ + CommandObjectPlugin.cpp \ + CommandObjectProcess.cpp \ + CommandObjectQuit.cpp \ + CommandObjectRegister.cpp \ + CommandObjectSettings.cpp \ + CommandObjectSource.cpp \ + CommandObjectSyntax.cpp \ + CommandObjectTarget.cpp \ + CommandObjectThread.cpp \ + CommandObjectType.cpp \ + CommandObjectVersion.cpp \ + CommandObjectWatchpoint.cpp \ + CommandObjectWatchpointCommand.cpp + +TGHDRS= DiagnosticCommonKinds \ + DeclNodes \ + StmtNodes \ + CommentCommandList + +.include "../lldb.lib.mk" -- cgit v1.1