forked from OSchip/llvm-project
Makefiles for new mach-core directory.
Patch from dawn@burble.org! llvm-svn: 151375
This commit is contained in:
parent
a3e6ed2161
commit
45178a264d
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue