From e6f9f66b39c05f2b5f0b708095686d6fa17dc6e8 Mon Sep 17 00:00:00 2001 From: Stephen Wilson Date: Sat, 24 Jul 2010 02:19:04 +0000 Subject: 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 --- lldb/lib/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lldb/lib') 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 -- cgit v1.2.3