summaryrefslogtreecommitdiffstats
path: root/lldb/lib
diff options
context:
space:
mode:
authorStephen Wilson <wilsons@start.ca>2010-07-24 02:19:04 +0000
committerStephen Wilson <wilsons@start.ca>2010-07-24 02:19:04 +0000
commite6f9f66b39c05f2b5f0b708095686d6fa17dc6e8 (patch)
treefc94bdc38261cce829aa4975a17500356de9a64f /lldb/lib
parentddb46efcca906855905d301c42f321a391428ac5 (diff)
downloadbcm5719-llvm-e6f9f66b39c05f2b5f0b708095686d6fa17dc6e8.tar.gz
bcm5719-llvm-e6f9f66b39c05f2b5f0b708095686d6fa17dc6e8.zip
Add a new Process plugin for Linux.
This component is still at an early stage, but allows for simple breakpoint/step-over operations and basic process control. The makefiles are set up to build the plugin under Linux only. llvm-svn: 109318
Diffstat (limited to 'lldb/lib')
-rw-r--r--lldb/lib/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile
index 50df5831d30..f651e4233e5 100644
--- a/lldb/lib/Makefile
+++ b/lldb/lib/Makefile
@@ -33,7 +33,6 @@ USEDLIBS = lldbAPI.a \
lldbPluginObjectFileELF.a \
lldbPluginSymbolFileDWARF.a \
lldbPluginSymbolFileSymtab.a \
- lldbPluginSymbolVendorMacOSX.a \
lldbSymbol.a \
lldbTarget.a \
lldbUtility.a \
@@ -65,11 +64,13 @@ ifeq ($(HOST_OS),Darwin)
lldbPluginObjectContainerUniversalMachO.a \
lldbPluginObjectFileMachO.a \
lldbPluginProcessGDBRemote.a \
- lldbPluginUtility.a
+ lldbPluginUtility.a \
+ lldbSymbolVendorMaxOSX.a
endif
ifeq ($(HOST_OS),Linux)
- USEDLIBS += lldbHostLinux.a
+ USEDLIBS += lldbHostLinux.a \
+ lldbPluginProcessLinux.a
endif
include $(LEVEL)/Makefile.common
OpenPOWER on IntegriCloud