diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile index fd2b8a0119ee..540c9d8016e1 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 0aae174a5957..98e4dae18686 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 000000000000..6db849872267 --- /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