diff options
| author | Peter Collingbourne <peter@pcc.me.uk> | 2011-05-19 17:34:58 +0000 |
|---|---|---|
| committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-05-19 17:34:58 +0000 |
| commit | 5e494f4fe9e63fd3fa0156a190a9603fa5eb7335 (patch) | |
| tree | 6a874330e5b5e3eac40b84ae3910868efe46a891 | |
| parent | eca54e4e6d1dad530afb33a2f4f4059da80d35ae (diff) | |
| download | bcm5719-llvm-5e494f4fe9e63fd3fa0156a190a9603fa5eb7335.tar.gz bcm5719-llvm-5e494f4fe9e63fd3fa0156a190a9603fa5eb7335.zip | |
Add UnwindAssembly plugins to makefile build
llvm-svn: 131650
| -rw-r--r-- | lldb/lib/Makefile | 2 | ||||
| -rw-r--r-- | lldb/source/Plugins/Makefile | 3 | ||||
| -rw-r--r-- | lldb/source/Plugins/UnwindAssembly/InstEmulation/Makefile | 14 | ||||
| -rw-r--r-- | lldb/source/Plugins/UnwindAssembly/x86/Makefile | 14 |
4 files changed, 32 insertions, 1 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile index 29025a7fca7..bf49958d33f 100644 --- a/lldb/lib/Makefile +++ b/lldb/lib/Makefile @@ -39,6 +39,8 @@ USEDLIBS = lldbAPI.a \ lldbPluginProcessGDBRemote.a \ lldbPluginSymbolFileDWARF.a \ lldbPluginSymbolFileSymtab.a \ + lldbPluginUnwindAssemblyInstEmulation.a \ + lldbPluginUnwindAssemblyx86.a \ lldbPluginUtility.a \ lldbSymbol.a \ lldbTarget.a \ diff --git a/lldb/source/Plugins/Makefile b/lldb/source/Plugins/Makefile index 4261d7ec400..f974d5f004b 100644 --- a/lldb/source/Plugins/Makefile +++ b/lldb/source/Plugins/Makefile @@ -15,7 +15,8 @@ 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 Instruction/ARM + Platform Process/gdb-remote Instruction/ARM \ + UnwindAssembly/InstEmulation UnwindAssembly/x86 ifeq ($(HOST_OS),Darwin) DIRS += DynamicLoader/MacOSX-DYLD ObjectContainer/Universal-Mach-O \ diff --git a/lldb/source/Plugins/UnwindAssembly/InstEmulation/Makefile b/lldb/source/Plugins/UnwindAssembly/InstEmulation/Makefile new file mode 100644 index 00000000000..e006235864f --- /dev/null +++ b/lldb/source/Plugins/UnwindAssembly/InstEmulation/Makefile @@ -0,0 +1,14 @@ +##==- source/Plugins/UnwindAssembly/InstEmulation/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 := lldbPluginUnwindAssemblyInstEmulation +BUILD_ARCHIVE = 1 + +include $(LLDB_LEVEL)/Makefile diff --git a/lldb/source/Plugins/UnwindAssembly/x86/Makefile b/lldb/source/Plugins/UnwindAssembly/x86/Makefile new file mode 100644 index 00000000000..dddf7f71e98 --- /dev/null +++ b/lldb/source/Plugins/UnwindAssembly/x86/Makefile @@ -0,0 +1,14 @@ +##==-- source/Plugins/UnwindAssembly/x86/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 := lldbPluginUnwindAssemblyx86 +BUILD_ARCHIVE = 1 + +include $(LLDB_LEVEL)/Makefile |

