summaryrefslogtreecommitdiff
path: root/src/tee
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-10-07 18:38:43 +0200
committerBram Moolenaar <Bram@vim.org>2017-10-07 18:38:43 +0200
commit73f4439ca690d8224df8f88dc71a43fafdcc89bf (patch)
treebb00da4d4e9cacd9af4cbdd8cd02e700b066eeb3 /src/tee
parent54e5dbf58e16d0d757a315480c9e63ac7f8a74c7 (diff)
downloadvim-git-73f4439ca690d8224df8f88dc71a43fafdcc89bf.tar.gz
patch 8.0.1178: using old compiler on MS-Windowsv8.0.1178
Problem: Using old compiler on MS-Windows. Solution: Switch default build on MS-Windows to use MSVC 2015. (Ken Takata)
Diffstat (limited to 'src/tee')
-rw-r--r--src/tee/Make_mvc.mak7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/tee/Make_mvc.mak b/src/tee/Make_mvc.mak
index 7fe22df37..950100d3c 100644
--- a/src/tee/Make_mvc.mak
+++ b/src/tee/Make_mvc.mak
@@ -1,10 +1,15 @@
# A very (if not the most) simplistic Makefile for MSVC
+SUBSYSTEM = console
+!if "$(SUBSYSTEM_VER)" != ""
+SUBSYSTEM = $(SUBSYSTEM),$(SUBSYSTEM_VER)
+!endif
+
CC=cl
CFLAGS=/O2 /nologo
tee.exe: tee.obj
- $(CC) $(CFLAGS) /Fo$@ $**
+ $(CC) $(CFLAGS) /Fo$@ $** /link /subsystem:$(SUBSYSTEM)
tee.obj: tee.c
$(CC) $(CFLAGS) /c $**