[Lldb-commits] [lldb] r127215 - in /lldb/trunk: lib/Makefile source/Plugins/DynamicLoader/Static/Makefile source/Plugins/Makefile

Stephen Wilson wilsons at start.ca
Mon Mar 7 19:57:00 PST 2011


Author: wilsons
Date: Mon Mar  7 21:57:00 2011
New Revision: 127215

URL: http://llvm.org/viewvc/llvm-project?rev=127215&view=rev
Log:
Add Makefile support for the new DynamicLoaderStatic plugin.


Added:
    lldb/trunk/source/Plugins/DynamicLoader/Static/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=127215&r1=127214&r2=127215&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Mon Mar  7 21:57:00 2011
@@ -31,6 +31,7 @@
 	lldbPluginABIMacOSX_i386.a \
 	lldbPluginABISysV_x86_64.a \
 	lldbPluginDisassemblerLLVM.a \
+	lldbPluginDynamicLoaderStatic.a \
 	lldbPluginObjectContainerBSDArchive.a \
 	lldbPluginObjectFileELF.a \
 	lldbPluginSymbolFileDWARF.a \

Added: lldb/trunk/source/Plugins/DynamicLoader/Static/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/DynamicLoader/Static/Makefile?rev=127215&view=auto
==============================================================================
--- lldb/trunk/source/Plugins/DynamicLoader/Static/Makefile (added)
+++ lldb/trunk/source/Plugins/DynamicLoader/Static/Makefile Mon Mar  7 21:57:00 2011
@@ -0,0 +1,14 @@
+##===- source/Plugins/DynamicLoader/Static/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 := lldbPluginDynamicLoaderStatic
+BUILD_ARCHIVE = 1
+
+include $(LLDB_LEVEL)/Makefile

Modified: lldb/trunk/source/Plugins/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Makefile?rev=127215&r1=127214&r2=127215&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Mon Mar  7 21:57:00 2011
@@ -14,7 +14,7 @@
 
 DIRS := ABI/MacOSX-i386 ABI/SysV-x86_64 Disassembler/llvm  \
 	ObjectContainer/BSD-Archive ObjectFile/ELF SymbolFile/DWARF \
-	SymbolFile/Symtab Process/Utility
+	SymbolFile/Symtab Process/Utility DynamicLoader/Static
 
 ifeq ($(HOST_OS),Darwin)
 DIRS += DynamicLoader/MacOSX-DYLD ObjectContainer/Universal-Mach-O \





More information about the lldb-commits mailing list