diff options
| author | joerg <joerg@NetBSD.org> | 2013-09-29 12:11:59 +0000 |
|---|---|---|
| committer | joerg <joerg@NetBSD.org> | 2013-09-29 12:11:59 +0000 |
| commit | e21e8f78856cdfac24d3cf337340bb0ba2e6e2fd (patch) | |
| tree | 42574d33dfdbd57a779b3491a59d18d6e4fc3baf /external/bsd/llvm/lib/liblldbAPI | |
| parent | ae375260f7d96224e56e3b4194f4cc2626a9340c (diff) | |
Hook up initial build infrastructure for LLDB. Update LLVM/Clang
snapshot to r191390 for some required changed. Re-enable static analyzer
in Clang.
Diffstat (limited to 'external/bsd/llvm/lib/liblldbAPI')
| -rw-r--r-- | external/bsd/llvm/lib/liblldbAPI/Makefile | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/external/bsd/llvm/lib/liblldbAPI/Makefile b/external/bsd/llvm/lib/liblldbAPI/Makefile new file mode 100644 index 00000000000..dff25dfd674 --- /dev/null +++ b/external/bsd/llvm/lib/liblldbAPI/Makefile @@ -0,0 +1,61 @@ +# $NetBSD: Makefile,v 1.1 2013/09/29 12:12:00 joerg Exp $ + +LIB= lldbAPI + +.include <bsd.init.mk> + +.PATH: ${LLDB_SRCDIR}/source/API + +SRCS+= SBAddress.cpp \ + SBBlock.cpp \ + SBBreakpoint.cpp \ + SBBreakpointLocation.cpp \ + SBBroadcaster.cpp \ + SBCommandInterpreter.cpp \ + SBCommandReturnObject.cpp \ + SBCommunication.cpp \ + SBCompileUnit.cpp \ + SBData.cpp \ + SBDebugger.cpp \ + SBDeclaration.cpp \ + SBError.cpp \ + SBEvent.cpp \ + SBExpressionOptions.cpp \ + SBFileSpec.cpp \ + SBFileSpecList.cpp \ + SBFrame.cpp \ + SBFunction.cpp \ + SBHostOS.cpp \ + SBInputReader.cpp \ + SBInstruction.cpp \ + SBInstructionList.cpp \ + SBLineEntry.cpp \ + SBListener.cpp \ + SBModule.cpp \ + SBModuleSpec.cpp \ + SBProcess.cpp \ + SBSection.cpp \ + SBSourceManager.cpp \ + SBStream.cpp \ + SBStringList.cpp \ + SBSymbol.cpp \ + SBSymbolContext.cpp \ + SBSymbolContextList.cpp \ + SBTarget.cpp \ + SBThread.cpp \ + SBType.cpp \ + SBTypeCategory.cpp \ + SBTypeFilter.cpp \ + SBTypeFormat.cpp \ + SBTypeNameSpecifier.cpp \ + SBTypeSummary.cpp \ + SBTypeSynthetic.cpp \ + SBValue.cpp \ + SBValueList.cpp \ + SBWatchpoint.cpp + +.if defined(HOSTLIB) +.include <bsd.hostlib.mk> +.else +.include <bsd.lib.mk> +.endif |
