[Lldb-commits] [lldb] r192702 - Update makefiles to build PlatformWindows

Deepak Panickal deepak at codeplay.com
Tue Oct 15 06:52:21 PDT 2013


Author: panickal
Date: Tue Oct 15 08:52:20 2013
New Revision: 192702

URL: http://llvm.org/viewvc/llvm-project?rev=192702&view=rev
Log:
Update makefiles to build PlatformWindows

Added:
    lldb/trunk/source/Plugins/Platform/Windows/Makefile
Modified:
    lldb/trunk/lib/Makefile
    lldb/trunk/source/Plugins/Platform/Makefile

Modified: lldb/trunk/lib/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lib/Makefile?rev=192702&r1=192701&r2=192702&view=diff
==============================================================================
--- lldb/trunk/lib/Makefile (original)
+++ lldb/trunk/lib/Makefile Tue Oct 15 08:52:20 2013
@@ -69,6 +69,7 @@ USEDLIBS = lldbAPI.a \
 	LLVMMCDisassembler.a \
 	lldbPluginPlatformMacOSX.a \
 	lldbPluginPlatformLinux.a \
+	lldbPluginPlatformWindows.a \
 	lldbPluginPlatformFreeBSD.a \
 	lldbPluginPlatformPOSIX.a
 

Modified: lldb/trunk/source/Plugins/Platform/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/Makefile?rev=192702&r1=192701&r2=192702&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Platform/Makefile (original)
+++ lldb/trunk/source/Plugins/Platform/Makefile Tue Oct 15 08:52:20 2013
@@ -11,7 +11,7 @@ LLDB_LEVEL := ../../..
 
 include $(LLDB_LEVEL)/../../Makefile.config
 
-DIRS := gdb-server MacOSX Linux FreeBSD POSIX
+DIRS := gdb-server MacOSX Linux FreeBSD POSIX Windows
 
 # ifeq ($(HOST_OS),Darwin)
 #   DIRS += MacOSX

Added: lldb/trunk/source/Plugins/Platform/Windows/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Platform/Windows/Makefile?rev=192702&view=auto
==============================================================================
--- lldb/trunk/source/Plugins/Platform/Windows/Makefile (added)
+++ lldb/trunk/source/Plugins/Platform/Windows/Makefile Tue Oct 15 08:52:20 2013
@@ -0,0 +1,14 @@
+##===- source/Plugins/Platform/Windows/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 := lldbPluginPlatformWindows
+BUILD_ARCHIVE = 1
+
+include $(LLDB_LEVEL)/Makefile





More information about the lldb-commits mailing list