mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-25 14:50:26 +00:00
Fix Makefile build
llvm-svn: 246932
This commit is contained in:
parent
79c6971cdf
commit
311435dbb6
@ -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 \
|
||||
|
14
lldb/source/Plugins/ExpressionParser/Clang/Makefile
Normal file
14
lldb/source/Plugins/ExpressionParser/Clang/Makefile
Normal 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
|
14
lldb/source/Plugins/Language/CPlusPlus/Makefile
Normal file
14
lldb/source/Plugins/Language/CPlusPlus/Makefile
Normal 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
|
14
lldb/source/Plugins/Language/ObjC/Makefile
Normal file
14
lldb/source/Plugins/Language/ObjC/Makefile
Normal 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
|
14
lldb/source/Plugins/Language/ObjCPlusPlus/Makefile
Normal file
14
lldb/source/Plugins/Language/ObjCPlusPlus/Makefile
Normal 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
|
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user