[Lldb-commits] [lldb] r131650 - in /lldb/trunk: lib/Makefile source/Plugins/Makefile source/Plugins/UnwindAssembly/InstEmulation/Makefile source/Plugins/UnwindAssembly/x86/Makefile

Peter Collingbourne peter at pcc.me.uk
Thu May 19 10:34:58 PDT 2011


Author: pcc
Date: Thu May 19 12:34:58 2011
New Revision: 131650

URL: http://llvm.org/viewvc/llvm-project?rev=131650&view=rev
Log:
Add UnwindAssembly plugins to makefile build

Added:
    lldb/trunk/source/Plugins/UnwindAssembly/InstEmulation/Makefile
    lldb/trunk/source/Plugins/UnwindAssembly/x86/Makefile
Modified:
    lldb/trunk/lib/Makefile
    lldb/trunk/source/Plugins/Makefile

Modified: lldb/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lib/Makefile?rev=131650&r1=131649&r2=131650&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Thu May 19 12:34:58 2011
@@ -39,6 +39,8 @@
 	lldbPluginProcessGDBRemote.a \
 	lldbPluginSymbolFileDWARF.a \
 	lldbPluginSymbolFileSymtab.a \
+	lldbPluginUnwindAssemblyInstEmulation.a \
+	lldbPluginUnwindAssemblyx86.a \
 	lldbPluginUtility.a \
 	lldbSymbol.a \
 	lldbTarget.a \

Modified: lldb/trunk/source/Plugins/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Makefile?rev=131650&r1=131649&r2=131650&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Thu May 19 12:34:58 2011
@@ -15,7 +15,8 @@
 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 \

Added: lldb/trunk/source/Plugins/UnwindAssembly/InstEmulation/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/UnwindAssembly/InstEmulation/Makefile?rev=131650&view=auto
==============================================================================
--- lldb/trunk/source/Plugins/UnwindAssembly/InstEmulation/Makefile (added)
+++ lldb/trunk/source/Plugins/UnwindAssembly/InstEmulation/Makefile Thu May 19 12:34:58 2011
@@ -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

Added: lldb/trunk/source/Plugins/UnwindAssembly/x86/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/UnwindAssembly/x86/Makefile?rev=131650&view=auto
==============================================================================
--- lldb/trunk/source/Plugins/UnwindAssembly/x86/Makefile (added)
+++ lldb/trunk/source/Plugins/UnwindAssembly/x86/Makefile Thu May 19 12:34:58 2011
@@ -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





More information about the lldb-commits mailing list