diff options
author | emaste <emaste@FreeBSD.org> | 2013-09-20 01:52:02 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2013-09-20 01:52:02 +0000 |
commit | 51ba585f88949f7d515cf6be9c32aa678838a67c (patch) | |
tree | 03c4639d8dd72b5865e528b3705c2061add52e92 /lib/clang/liblldbSymbol | |
parent | 07c75ee46c7f2c2fa93ef848a944b6c054d22168 (diff) | |
download | FreeBSD-src-51ba585f88949f7d515cf6be9c32aa678838a67c.zip FreeBSD-src-51ba585f88949f7d515cf6be9c32aa678838a67c.tar.gz |
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
Diffstat (limited to 'lib/clang/liblldbSymbol')
-rw-r--r-- | lib/clang/liblldbSymbol/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/lib/clang/liblldbSymbol/Makefile b/lib/clang/liblldbSymbol/Makefile new file mode 100644 index 0000000..ed22ec3 --- /dev/null +++ b/lib/clang/liblldbSymbol/Makefile @@ -0,0 +1,43 @@ +# $FreeBSD$ + +.include <bsd.own.mk> + +LIB= lldbSymbol + +SRCDIR= tools/lldb/source/Symbol +SRCS= Block.cpp \ + ClangASTContext.cpp \ + ClangASTImporter.cpp \ + ClangASTType.cpp \ + ClangExternalASTSourceCallbacks.cpp \ + ClangExternalASTSourceCommon.cpp \ + ClangNamespaceDecl.cpp \ + CompileUnit.cpp \ + Declaration.cpp \ + DWARFCallFrameInfo.cpp \ + Function.cpp \ + FuncUnwinders.cpp \ + LineEntry.cpp \ + LineTable.cpp \ + ObjectFile.cpp \ + Symbol.cpp \ + SymbolContext.cpp \ + SymbolFile.cpp \ + SymbolVendor.cpp \ + Symtab.cpp \ + Type.cpp \ + TypeList.cpp \ + UnwindPlan.cpp \ + UnwindTable.cpp \ + Variable.cpp \ + VariableList.cpp \ + VerifyDecl.cpp + +TGHDRS= DiagnosticCommonKinds \ + DeclNodes \ + StmtNodes \ + CommentCommandList \ + AttrList \ + Attrs + +.include "../lldb.lib.mk" |