aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAshok Thirumurthi <ashok.thirumurthi@intel.com>2013-07-17 16:06:12 +0000
committerAshok Thirumurthi <ashok.thirumurthi@intel.com>2013-07-17 16:06:12 +0000
commitf6f52692f0f8f79860e573ef18a9ed93ef5e2668 (patch)
treed16d4aca6ccbfd3b693162e7d45d8a9dc912400b /lib
parent8f9653b3dfa26bd728e3ac6777ceb8ab3f5e29ce (diff)
downloadlldb-f6f52692f0f8f79860e573ef18a9ed93ef5e2668.tar.gz
Re-introduces ELF core file support for Linux x86-64
Usage: 'lldb a.out -c core'. TODO: FreeBSD support. TODO: Support for AVX registers. TODO: Refactor so that RegisterContextCore* don't inherit from classes that use ProcessMonitor to fix the build on OS/X. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@186516 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile
index ea028ce37..eb5276823 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -98,13 +98,15 @@ ifeq ($(HOST_OS),Linux)
USEDLIBS += lldbHostLinux.a \
lldbPluginProcessLinux.a \
lldbPluginProcessPOSIX.a \
- lldbPluginDynamicLoaderMacOSX.a
+ lldbPluginDynamicLoaderMacOSX.a \
+ lldbPluginProcessElfCore.a
endif
ifneq (,$(filter $(HOST_OS), FreeBSD GNU/kFreeBSD))
USEDLIBS += lldbHostFreeBSD.a \
lldbPluginProcessPOSIX.a \
- lldbPluginProcessFreeBSD.a
+ lldbPluginProcessFreeBSD.a \
+ lldbPluginProcessElfCore.a
endif
include $(LEVEL)/Makefile.common