Ed Maste 3561791104 Update LLDB to upstream r194122 snapshot
ludes minor changes relative to upstream, for compatibility with
FreeBSD's in-tree LLVM 3.3:

- Reverted LLDB r191806, restoring use of previous API.
- Reverted part of LLDB r189317, restoring previous enum names.
- Work around missing LLVM r192504, using previous registerEHFrames API
  (limited functionality).
- Removed PlatformWindows header include and init/terminate calls.

Sponsored by:	DARPA, AFRL
2013-11-12 17:25:33 +00:00

56 lines
1.1 KiB
Makefile

# $FreeBSD$
.include <bsd.own.mk>
LIB= lldbTarget
CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/Utility
SRCDIR= tools/lldb/source/Target
SRCS= ABI.cpp \
CPPLanguageRuntime.cpp \
ExecutionContext.cpp \
LanguageRuntime.cpp \
Memory.cpp \
ObjCLanguageRuntime.cpp \
OperatingSystem.cpp \
PathMappingList.cpp \
Platform.cpp \
Process.cpp \
RegisterContext.cpp \
SectionLoadList.cpp \
StackFrame.cpp \
StackFrameList.cpp \
StackID.cpp \
StopInfo.cpp \
SystemRuntime.cpp \
Target.cpp \
TargetList.cpp \
Thread.cpp \
ThreadList.cpp \
ThreadPlan.cpp \
ThreadPlanBase.cpp \
ThreadPlanCallFunction.cpp \
ThreadPlanCallUserExpression.cpp \
ThreadPlanRunToAddress.cpp \
ThreadPlanShouldStopHere.cpp \
ThreadPlanStepInRange.cpp \
ThreadPlanStepInstruction.cpp \
ThreadPlanStepOut.cpp \
ThreadPlanStepOverBreakpoint.cpp \
ThreadPlanStepOverRange.cpp \
ThreadPlanStepRange.cpp \
ThreadPlanStepThrough.cpp \
ThreadPlanStepUntil.cpp \
ThreadPlanTracer.cpp \
ThreadSpec.cpp \
UnixSignals.cpp \
UnwindAssembly.cpp
TGHDRS= DiagnosticCommonKinds \
DeclNodes \
StmtNodes \
CommentCommandList
.include "../lldb.lib.mk"