diff options
author | emaste <emaste@FreeBSD.org> | 2013-12-03 21:29:45 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2013-12-03 21:29:45 +0000 |
commit | c2332a8992b450e5a8924871478086bfaa393af8 (patch) | |
tree | 4fa61b263dd9025e4bb0e207c4b121aa3f020405 /lib | |
parent | f89bf72d3c2e9de867cf064667a5d3f89f0b7de0 (diff) | |
download | FreeBSD-src-c2332a8992b450e5a8924871478086bfaa393af8.zip FreeBSD-src-c2332a8992b450e5a8924871478086bfaa393af8.tar.gz |
lldb: Threaded inferior support for FreeBSD
This is in the process of being submitted to the upstream LLDB
repository. The thread list functionality is modelled in part on
GDBRemoteCommunicationClient.
LLDB bug pr16696 and code review D2267
Sponsored by: DARPA, AFRL
Diffstat (limited to 'lib')
-rw-r--r-- | lib/clang/liblldbPluginProcessFreeBSD/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/clang/liblldbPluginProcessFreeBSD/Makefile b/lib/clang/liblldbPluginProcessFreeBSD/Makefile index 80e668e..2002b7d 100644 --- a/lib/clang/liblldbPluginProcessFreeBSD/Makefile +++ b/lib/clang/liblldbPluginProcessFreeBSD/Makefile @@ -9,7 +9,8 @@ CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/Fre CFLAGS+=-I${.CURDIR}/../../../contrib/llvm/tools/lldb/source/Plugins/Process/POSIX SRCDIR= tools/lldb/source/Plugins/Process/FreeBSD -SRCS= ProcessFreeBSD.cpp \ +SRCS= FreeBSDThread.cpp \ + ProcessFreeBSD.cpp \ ProcessMonitor.cpp TGHDRS= DiagnosticCommonKinds \ |