[Lldb-commits] [lldb] r143389 - in /lldb/trunk: lib/Makefile source/Plugins/Makefile
Daniel Dunbar
daniel at zuster.org
Mon Oct 31 15:51:11 PDT 2011
Author: ddunbar
Date: Mon Oct 31 17:51:11 2011
New Revision: 143389
URL: http://llvm.org/viewvc/llvm-project?rev=143389&view=rev
Log:
build: Build in the Darwin-Kernel OperatingSystem plugin.
Modified:
lldb/trunk/lib/Makefile
lldb/trunk/source/Plugins/Makefile
Modified: lldb/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lib/Makefile?rev=143389&r1=143388&r2=143389&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Mon Oct 31 17:51:11 2011
@@ -75,9 +75,10 @@
lldbPluginDynamicLoaderDarwinKernel.a \
lldbPluginObjectContainerUniversalMachO.a \
lldbPluginObjectFileMachO.a \
+ lldbPluginOperatingSystemDarwinKernel.a \
lldbPluginSymbolVendorMacOSX.a \
lldbPluginPlatformMacOSX.a \
- lldbPluginProcessDarwin.a
+ lldbPluginProcessDarwin.a
endif
ifeq ($(HOST_OS),Linux)
Modified: lldb/trunk/source/Plugins/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Makefile?rev=143389&r1=143388&r2=143389&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Mon Oct 31 17:51:11 2011
@@ -21,9 +21,11 @@
LanguageRuntime/ObjC/AppleObjCRuntime
ifeq ($(HOST_OS),Darwin)
-DIRS += Process/MacOSX-Kernel DynamicLoader/MacOSX-DYLD \
- DynamicLoader/Darwin-Kernel \
- ObjectContainer/Universal-Mach-O ObjectFile/Mach-O SymbolVendor/MacOSX
+DIRS += Process/MacOSX-Kernel
+DIRS += DynamicLoader/MacOSX-DYLD DynamicLoader/Darwin-Kernel
+DIRS += ObjectContainer/Universal-Mach-O ObjectFile/Mach-O
+DIRS += SymbolVendor/MacOSX
+DIRS += OperatingSystem/Darwin-Kernel
#DIRS += Process/MacOSX-User
endif
More information about the lldb-commits
mailing list