Skip to content

Commit 04c86d2

Browse files
committed
patch 8.1.0483: MinGW does not build tee.exe
Problem: MinGW does not build tee.exe. Solution: Add build instructions. (Yasuhiro Matsumoto, closes #3548)
1 parent 115510f commit 04c86d2

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

src/Make_cyg_ming.mak

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ ifeq (yes, $(MAP))
943943
LFLAGS += -Wl,-Map=$(TARGET).map
944944
endif
945945

946-
all: $(TARGET) vimrun.exe xxd/xxd.exe install.exe uninstal.exe GvimExt/gvimext.dll
946+
all: $(TARGET) vimrun.exe xxd/xxd.exe tee/tee.exe install.exe uninstal.exe GvimExt/gvimext.dll
947947

948948
vimrun.exe: vimrun.c
949949
$(CC) $(CFLAGS) -o vimrun.exe vimrun.c $(LIB)
@@ -968,6 +968,9 @@ mpress: exes
968968
xxd/xxd.exe: xxd/xxd.c
969969
$(MAKE) -C xxd -f Make_ming.mak CC='$(CC)'
970970

971+
tee/tee.exe: tee/tee.c
972+
$(MAKE) -C tee CC='$(CC)'
973+
971974
GvimExt/gvimext.dll: GvimExt/gvimext.cpp GvimExt/gvimext.rc GvimExt/gvimext.h
972975
$(MAKE) -C GvimExt -f Make_ming.mak CROSS=$(CROSS) CROSS_COMPILE=$(CROSS_COMPILE) CXX='$(CXX)' STATIC_STDCPLUS=$(STATIC_STDCPLUS)
973976

@@ -996,6 +999,7 @@ ifdef MZSCHEME
996999
endif
9971000
$(MAKE) -C GvimExt -f Make_ming.mak clean
9981001
$(MAKE) -C xxd -f Make_ming.mak clean
1002+
$(MAKE) -C tee clean
9991003

10001004
###########################################################################
10011005
INCL = vim.h alloc.h arabic.h ascii.h ex_cmds.h farsi.h feature.h globals.h \

src/tee/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# A very (if not the most) simplistic Makefile for OS/2
1+
# A very (if not the most) simplistic Makefile for MS-Windows and OS/2
22

33
CC=gcc
44
CFLAGS=-O2 -fno-strength-reduce

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -792,6 +792,8 @@ static char *(features[]) =
792792

793793
static int included_patches[] =
794794
{ /* Add new patch number below this line */
795+
/**/
796+
483,
795797
/**/
796798
482,
797799
/**/

0 commit comments

Comments
 (0)