forked from OSchip/llvm-project
build: Fixup Darwin process plugin build for Makefiles.
llvm-svn: 143376
This commit is contained in:
parent
647bf23510
commit
e6fb049d3d
|
@ -76,7 +76,7 @@ ifeq ($(HOST_OS),Darwin)
|
||||||
lldbPluginObjectFileMachO.a \
|
lldbPluginObjectFileMachO.a \
|
||||||
lldbPluginSymbolVendorMacOSX.a \
|
lldbPluginSymbolVendorMacOSX.a \
|
||||||
lldbPluginPlatformMacOSX.a \
|
lldbPluginPlatformMacOSX.a \
|
||||||
lldbPluginProcessDarwin
|
lldbPluginProcessDarwin.a
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(HOST_OS),Linux)
|
ifeq ($(HOST_OS),Linux)
|
||||||
|
|
|
@ -21,7 +21,7 @@ DIRS := ABI/MacOSX-arm ABI/MacOSX-i386 ABI/SysV-x86_64 Disassembler/llvm \
|
||||||
LanguageRuntime/ObjC/AppleObjCRuntime
|
LanguageRuntime/ObjC/AppleObjCRuntime
|
||||||
|
|
||||||
ifeq ($(HOST_OS),Darwin)
|
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
|
ObjectFile/Mach-O SymbolVendor/MacOSX
|
||||||
#DIRS += Process/MacOSX-User
|
#DIRS += Process/MacOSX-User
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue