forked from OSchip/llvm-project
parent
1b53ec796a
commit
964a5c59f8
|
@ -49,6 +49,7 @@ USEDLIBS = lldbAPI.a \
|
|||
lldbPluginDynamicLoaderPOSIX.a \
|
||||
lldbPluginDynamicLoaderHexagon.a \
|
||||
lldbPluginDynamicLoaderMacOSX.a \
|
||||
lldbPluginDynamicLoaderWindowsDYLD.a \
|
||||
lldbPluginEmulateInstructionARM.a \
|
||||
lldbPluginEmulateInstructionARM64.a \
|
||||
lldbPluginEmulateInstructionMIPS.a \
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
##===- source/Plugins/DynamicLoader/Windows-DYLD/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 := lldbPluginDynamicLoaderWindowsDYLD
|
||||
BUILD_ARCHIVE = 1
|
||||
|
||||
include $(LLDB_LEVEL)/Makefile
|
|
@ -27,6 +27,7 @@ PARALLEL_DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-i386 A
|
|||
DynamicLoader/POSIX-DYLD \
|
||||
DynamicLoader/Hexagon-DYLD \
|
||||
DynamicLoader/MacOSX-DYLD \
|
||||
DynamicLoader/Windows-DYLD \
|
||||
OperatingSystem/Python \
|
||||
SystemRuntime/MacOSX \
|
||||
SymbolVendor/ELF \
|
||||
|
|
Loading…
Reference in New Issue