[Lldb-commits] [lldb] r143376 - in /lldb/trunk: lib/Makefile source/Plugins/Makefile source/Plugins/Process/MacOSX-Kernel/Makefile

Daniel Dunbar daniel at zuster.org
Mon Oct 31 15:50:28 PDT 2011


Author: ddunbar
Date: Mon Oct 31 17:50:27 2011
New Revision: 143376

URL: http://llvm.org/viewvc/llvm-project?rev=143376&view=rev
Log:
build: Fixup Darwin process plugin build for Makefiles.

Added:
    lldb/trunk/source/Plugins/Process/MacOSX-Kernel/Makefile
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=143376&r1=143375&r2=143376&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Mon Oct 31 17:50:27 2011
@@ -76,7 +76,7 @@
               lldbPluginObjectFileMachO.a \
               lldbPluginSymbolVendorMacOSX.a \
               lldbPluginPlatformMacOSX.a \
-			  lldbPluginProcessDarwin
+			  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=143376&r1=143375&r2=143376&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Mon Oct 31 17:50:27 2011
@@ -21,7 +21,7 @@
 	LanguageRuntime/ObjC/AppleObjCRuntime
 
 ifeq ($(HOST_OS),Darwin)
-DIRS += Process/Darwin DynamicLoader/MacOSX-DYLD ObjectContainer/Universal-Mach-O \
+DIRS += Process/MacOSX-Kernel DynamicLoader/MacOSX-DYLD ObjectContainer/Universal-Mach-O \
 	ObjectFile/Mach-O SymbolVendor/MacOSX
 #DIRS += Process/MacOSX-User
 endif

Added: lldb/trunk/source/Plugins/Process/MacOSX-Kernel/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/MacOSX-Kernel/Makefile?rev=143376&view=auto
==============================================================================
--- lldb/trunk/source/Plugins/Process/MacOSX-Kernel/Makefile (added)
+++ lldb/trunk/source/Plugins/Process/MacOSX-Kernel/Makefile Mon Oct 31 17:50:27 2011
@@ -0,0 +1,14 @@
+##===- source/Plugins/Process/MacOSX-Darwin/Makefile -------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
+
+LLDB_LEVEL := ../../../..
+LIBRARYNAME := lldbPluginProcessDarwin
+BUILD_ARCHIVE = 1
+
+include $(LLDB_LEVEL)/Makefile





More information about the lldb-commits mailing list