forked from OSchip/llvm-project
Add makefile support for the ARM instruction emulation plugin.
llvm-svn: 129119
This commit is contained in:
parent
3f588d3f50
commit
d5adc9185c
|
@ -32,6 +32,7 @@ USEDLIBS = lldbAPI.a \
|
|||
lldbPluginABISysV_x86_64.a \
|
||||
lldbPluginDisassemblerLLVM.a \
|
||||
lldbPluginDynamicLoaderStatic.a \
|
||||
lldbPluginEmulateInstructionARM.a \
|
||||
lldbPluginObjectContainerBSDArchive.a \
|
||||
lldbPluginObjectFileELF.a \
|
||||
lldbPluginPlatformGDBServer.a \
|
||||
|
@ -108,5 +109,5 @@ ifeq ($(HOST_OS), Linux)
|
|||
# Don't allow unresolved symbols.
|
||||
LLVMLibsOptions += -Wl,--no-undefined
|
||||
# Link in python
|
||||
LD.Flags += $(PYTHON_BUILD_FLAGS)
|
||||
LD.Flags += $(PYTHON_BUILD_FLAGS) -lrt
|
||||
endif
|
||||
|
|
|
@ -15,7 +15,7 @@ include $(LLDB_LEVEL)/../../Makefile.config
|
|||
DIRS := ABI/MacOSX-i386 ABI/SysV-x86_64 Disassembler/llvm \
|
||||
ObjectContainer/BSD-Archive ObjectFile/ELF SymbolFile/DWARF \
|
||||
SymbolFile/Symtab Process/Utility DynamicLoader/Static \
|
||||
Platform Process/gdb-remote
|
||||
Platform Process/gdb-remote Instruction/ARM
|
||||
|
||||
ifeq ($(HOST_OS),Darwin)
|
||||
DIRS += DynamicLoader/MacOSX-DYLD ObjectContainer/Universal-Mach-O \
|
||||
|
|
Loading…
Reference in New Issue