Fix Makefile build

llvm-svn: 246932
This commit is contained in:
Keno Fischer 2015-09-05 20:01:56 +00:00
parent 79c6971cdf
commit 311435dbb6
6 changed files with 64 additions and 0 deletions

View File

@ -50,6 +50,7 @@ USEDLIBS = lldbAPI.a \
lldbPluginDynamicLoaderHexagon.a \
lldbPluginDynamicLoaderMacOSXDYLD.a \
lldbPluginDynamicLoaderWindowsDYLD.a \
lldbPluginExpressionParserClang.a \
lldbPluginInstructionARM.a \
lldbPluginInstructionARM64.a \
lldbPluginInstructionMIPS.a \
@ -59,6 +60,9 @@ USEDLIBS = lldbAPI.a \
lldbPluginAppleObjCRuntime.a \
lldbPluginRenderScriptRuntime.a \
lldbPluginMemoryHistoryASan.a \
lldbPluginCPlusPlusLanguage.a \
lldbPluginObjCLanguage.a \
lldbPluginObjCPlusPlusLanguage.a \
lldbPluginObjectContainerBSDArchive.a \
lldbPluginObjectContainerMachOArchive.a \
lldbPluginObjectFileELF.a \

View File

@ -0,0 +1,14 @@
##===- source/Plugins/ExpressionParser/Clang ---------------*- 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 := lldbPluginExpressionParserClang
BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile

View File

@ -0,0 +1,14 @@
##===- source/Plugins/Language/CPlusPlus -------------------*- 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 := lldbPluginCPlusPlusLanguage
BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile

View File

@ -0,0 +1,14 @@
##===- source/Plugins/Language/ObjC ------------------------*- 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 := lldbPluginObjCLanguage
BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile

View File

@ -0,0 +1,14 @@
##===- source/Plugins/Language/ObjCPlusPlus ----------------*- 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 := lldbPluginObjCPlusPlusLanguage
BUILD_ARCHIVE = 1
include $(LLDB_LEVEL)/Makefile

View File

@ -24,10 +24,14 @@ PARALLEL_DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-i386 A
LanguageRuntime/CPlusPlus/ItaniumABI \
LanguageRuntime/ObjC/AppleObjCRuntime \
LanguageRuntime/RenderScript/RenderScriptRuntime \
Language/CPlusPlus \
Language/ObjC \
Language/ObjCPlusPlus \
DynamicLoader/POSIX-DYLD \
DynamicLoader/Hexagon-DYLD \
DynamicLoader/MacOSX-DYLD \
DynamicLoader/Windows-DYLD \
ExpressionParser/Clang \
OperatingSystem/Python \
SystemRuntime/MacOSX \
SymbolVendor/ELF \