forked from OSchip/llvm-project
Update makefiles to build PlatformWindows
llvm-svn: 192702
This commit is contained in:
parent
52ca74ec61
commit
e3eadf0f3b
|
@ -69,6 +69,7 @@ USEDLIBS = lldbAPI.a \
|
|||
LLVMMCDisassembler.a \
|
||||
lldbPluginPlatformMacOSX.a \
|
||||
lldbPluginPlatformLinux.a \
|
||||
lldbPluginPlatformWindows.a \
|
||||
lldbPluginPlatformFreeBSD.a \
|
||||
lldbPluginPlatformPOSIX.a
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue