diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-10-31 22:50:27 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-10-31 22:50:27 +0000 |
commit | e6fb049d3dfe5514a5b116cdb4291eb9d6cd43e7 (patch) | |
tree | adca37424d5e72be7382d6ce28d7cb7786cdf3df | |
parent | 647bf235107c67b7ddd532b99c4f763d67953ad5 (diff) | |
download | bcm5719-llvm-e6fb049d3dfe5514a5b116cdb4291eb9d6cd43e7.tar.gz bcm5719-llvm-e6fb049d3dfe5514a5b116cdb4291eb9d6cd43e7.zip |
build: Fixup Darwin process plugin build for Makefiles.
llvm-svn: 143376
-rw-r--r-- | lldb/lib/Makefile | 2 | ||||
-rw-r--r-- | lldb/source/Plugins/Makefile | 2 | ||||
-rw-r--r-- | lldb/source/Plugins/Process/MacOSX-Kernel/Makefile | 14 |
3 files changed, 16 insertions, 2 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile index 6abd672f6eb..cd1013d6f4f 100644 --- a/lldb/lib/Makefile +++ b/lldb/lib/Makefile @@ -76,7 +76,7 @@ ifeq ($(HOST_OS),Darwin) lldbPluginObjectFileMachO.a \ lldbPluginSymbolVendorMacOSX.a \ lldbPluginPlatformMacOSX.a \ - lldbPluginProcessDarwin + lldbPluginProcessDarwin.a endif ifeq ($(HOST_OS),Linux) diff --git a/lldb/source/Plugins/Makefile b/lldb/source/Plugins/Makefile index 7806840b4a3..5190037267e 100644 --- a/lldb/source/Plugins/Makefile +++ b/lldb/source/Plugins/Makefile @@ -21,7 +21,7 @@ DIRS := ABI/MacOSX-arm ABI/MacOSX-i386 ABI/SysV-x86_64 Disassembler/llvm \ 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 diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/Makefile b/lldb/source/Plugins/Process/MacOSX-Kernel/Makefile new file mode 100644 index 00000000000..e42f390ffe0 --- /dev/null +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/Makefile @@ -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 |