[Lldb-commits] [lldb] r151375 - in /lldb/trunk: lib/Makefile source/Plugins/Makefile source/Plugins/Process/mach-core/Makefile
Johnny Chen
johnny.chen at apple.com
Fri Feb 24 10:03:00 PST 2012
Author: johnny
Date: Fri Feb 24 12:02:59 2012
New Revision: 151375
URL: http://llvm.org/viewvc/llvm-project?rev=151375&view=rev
Log:
Makefiles for new mach-core directory.
Patch from dawn at burble.org!
Added:
lldb/trunk/source/Plugins/Process/mach-core/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=151375&r1=151374&r2=151375&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Fri Feb 24 12:02:59 2012
@@ -77,7 +77,8 @@
lldbPluginOperatingSystemDarwinKernel.a \
lldbPluginSymbolVendorMacOSX.a \
lldbPluginPlatformMacOSX.a \
- lldbPluginProcessDarwin.a
+ lldbPluginProcessDarwin.a \
+ lldbPluginProcessMachCore.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=151375&r1=151374&r2=151375&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Fri Feb 24 12:02:59 2012
@@ -27,6 +27,7 @@
DIRS += SymbolVendor/MacOSX
DIRS += OperatingSystem/Darwin-Kernel
#DIRS += Process/MacOSX-User
+DIRS += Process/mach-core
endif
ifeq ($(HOST_OS),Linux)
Added: lldb/trunk/source/Plugins/Process/mach-core/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/mach-core/Makefile?rev=151375&view=auto
==============================================================================
--- lldb/trunk/source/Plugins/Process/mach-core/Makefile (added)
+++ lldb/trunk/source/Plugins/Process/mach-core/Makefile Fri Feb 24 12:02:59 2012
@@ -0,0 +1,14 @@
+##===- source/Plugins/Process/mach-core/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 := lldbPluginProcessMachCore
+BUILD_ARCHIVE = 1
+
+include $(LLDB_LEVEL)/Makefile
More information about the lldb-commits
mailing list