Unbreak Makefile build

llvm-svn: 241820
This commit is contained in:
Keno Fischer 2015-07-09 17:09:09 +00:00
parent 1b53ec796a
commit 964a5c59f8
3 changed files with 16 additions and 0 deletions

View File

@ -49,6 +49,7 @@ USEDLIBS = lldbAPI.a \
lldbPluginDynamicLoaderPOSIX.a \
lldbPluginDynamicLoaderHexagon.a \
lldbPluginDynamicLoaderMacOSX.a \
lldbPluginDynamicLoaderWindowsDYLD.a \
lldbPluginEmulateInstructionARM.a \
lldbPluginEmulateInstructionARM64.a \
lldbPluginEmulateInstructionMIPS.a \

View File

@ -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

View File

@ -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 \