[Lldb-commits] [lldb] r241820 - Unbreak Makefile build

Keno Fischer kfischer at college.harvard.edu
Thu Jul 9 10:09:10 PDT 2015


Author: kfischer
Date: Thu Jul  9 12:09:09 2015
New Revision: 241820

URL: http://llvm.org/viewvc/llvm-project?rev=241820&view=rev
Log:
Unbreak Makefile build

Added:
    lldb/trunk/source/Plugins/DynamicLoader/Windows-DYLD/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=241820&r1=241819&r2=241820&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Thu Jul  9 12:09:09 2015
@@ -49,6 +49,7 @@ USEDLIBS = lldbAPI.a \
 	lldbPluginDynamicLoaderPOSIX.a \
 	lldbPluginDynamicLoaderHexagon.a \
 	lldbPluginDynamicLoaderMacOSX.a \
+	lldbPluginDynamicLoaderWindowsDYLD.a \
 	lldbPluginEmulateInstructionARM.a \
 	lldbPluginEmulateInstructionARM64.a \
 	lldbPluginEmulateInstructionMIPS.a \

Added: lldb/trunk/source/Plugins/DynamicLoader/Windows-DYLD/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/DynamicLoader/Windows-DYLD/Makefile?rev=241820&view=auto
==============================================================================
--- lldb/trunk/source/Plugins/DynamicLoader/Windows-DYLD/Makefile (added)
+++ lldb/trunk/source/Plugins/DynamicLoader/Windows-DYLD/Makefile Thu Jul  9 12:09:09 2015
@@ -0,0 +1,14 @@
+##===- source/Plugins/DynamicLoader/Windows-DYLD/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 := lldbPluginDynamicLoaderWindowsDYLD
+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=241820&r1=241819&r2=241820&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Makefile (original)
+++ lldb/trunk/source/Plugins/Makefile Thu Jul  9 12:09:09 2015
@@ -27,6 +27,7 @@ PARALLEL_DIRS := ABI/MacOSX-arm ABI/MacO
 	DynamicLoader/POSIX-DYLD \
 	DynamicLoader/Hexagon-DYLD \
 	DynamicLoader/MacOSX-DYLD \
+	DynamicLoader/Windows-DYLD \
 	OperatingSystem/Python \
 	SystemRuntime/MacOSX \
 	SymbolVendor/ELF \





More information about the lldb-commits mailing list