summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/lib/Makefile3
-rw-r--r--lldb/source/Plugins/Makefile1
-rw-r--r--lldb/source/Plugins/Process/mach-core/Makefile14
3 files changed, 17 insertions, 1 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile
index fd2b8a0119e..540c9d8016e 100644
--- a/lldb/lib/Makefile
+++ b/lldb/lib/Makefile
@@ -77,7 +77,8 @@ ifeq ($(HOST_OS),Darwin)
lldbPluginOperatingSystemDarwinKernel.a \
lldbPluginSymbolVendorMacOSX.a \
lldbPluginPlatformMacOSX.a \
- lldbPluginProcessDarwin.a
+ lldbPluginProcessDarwin.a \
+ lldbPluginProcessMachCore.a
endif
ifeq ($(HOST_OS),Linux)
diff --git a/lldb/source/Plugins/Makefile b/lldb/source/Plugins/Makefile
index 0aae174a595..98e4dae1868 100644
--- a/lldb/source/Plugins/Makefile
+++ b/lldb/source/Plugins/Makefile
@@ -27,6 +27,7 @@ DIRS += ObjectContainer/Universal-Mach-O ObjectFile/Mach-O
DIRS += SymbolVendor/MacOSX
DIRS += OperatingSystem/Darwin-Kernel
#DIRS += Process/MacOSX-User
+DIRS += Process/mach-core
endif
ifeq ($(HOST_OS),Linux)
diff --git a/lldb/source/Plugins/Process/mach-core/Makefile b/lldb/source/Plugins/Process/mach-core/Makefile
new file mode 100644
index 00000000000..6db84987226
--- /dev/null
+++ b/lldb/source/Plugins/Process/mach-core/Makefile
@@ -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
OpenPOWER on IntegriCloud