Highlights include (upstream revs in parens): - Improvements to the remote GDB protocol client (r196610, r197579, r197857, r200072, and others) - Bug fixes for big-endian targets (r196808) - Initial support for libdispatch (GCD) queues in the debuggee (r197190) - Add "step-avoid-libraries" setting (r199943) - IO subsystem improvements (including initial work on a curses gui) (r200263) - Support hardware watchpoints on FreeBSD (r201706) - Improved unwinding through hand-written assembly functions (r201839) - Handle DW_TAG_unspecified_parameters for variadic functions (r202061) - Fix Ctrl+C interrupting a running inferior process (r202086, r202154) - Various bug fixes for memory leaks, LLDB segfaults, the C++ demangler, ELF core files, DWARF debug info, and others. Sponsored by: DARPA, AFRL
60 lines
1.2 KiB
Makefile
60 lines
1.2 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 \
|
|
Queue.cpp \
|
|
QueueItem.cpp \
|
|
QueueList.cpp \
|
|
RegisterContext.cpp \
|
|
SectionLoadHistory.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"
|