Mercurial > vim
annotate src/GvimExt/Make_ming.mak @ 7982:5c30ba57aaea v7.4.1286
commit https://github.com/vim/vim/commit/7a84dbe6be0ef0e1ffbb7148cfe4ab50b9ba8f41
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Feb 7 21:29:00 2016 +0100
patch 7.4.1286
Problem: ch_open() with a timeout doesn't work correctly.
Solution: Change how select() is used. Don't give an error on timeout.
Add a test for ch_open() failing.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 07 Feb 2016 21:30:05 +0100 |
parents | a82b2d79e61b |
children | a0e7d7070799 |
rev | line source |
---|---|
10 | 1 # Project: gvimext |
2 # Generates gvimext.dll with gcc. | |
7602
a82b2d79e61b
commit https://github.com/vim/vim/commit/abfa9efb983c6fe9f5c4c342ff4d7017ce9a2c4b
Christian Brabandt <cb@256bit.org>
parents:
6811
diff
changeset
|
3 # To be used with MingW and Cygwin. |
10 | 4 # |
5 # Originally, the DLL base address was fixed: -Wl,--image-base=0x1C000000 | |
6 # Now it is allocated dymanically by the linker by evaluating all DLLs | |
7 # already loaded in memory. The binary image contains as well information | |
8 # for automatic pseudo-rebasing, if needed by the system. ALV 2004-02-29 | |
9 | |
10 # If cross-compiling set this to yes, else set it to no | |
11 CROSS = no | |
12 #CROSS = yes | |
13 # For the old MinGW 2.95 (the one you get e.g. with debian woody) | |
14 # set the following variable to yes and check if the executables are | |
15 # really named that way. | |
16 # If you have a newer MinGW or you are using cygwin set it to no and | |
17 # check also the executables | |
18 MINGWOLD = no | |
19 | |
2674 | 20 # Link against the shared versions of libgcc/libstdc++ by default. Set |
21 # STATIC_STDCPLUS to "yes" to link against static versions instead. | |
22 STATIC_STDCPLUS=no | |
23 #STATIC_STDCPLUS=yes | |
24 | |
25 # Note: -static-libstdc++ is not available until gcc 4.5.x. | |
26 LDFLAGS += -shared | |
27 ifeq (yes, $(STATIC_STDCPLUS)) | |
28 LDFLAGS += -static-libgcc -static-libstdc++ | |
29 endif | |
30 | |
10 | 31 ifeq ($(CROSS),yes) |
89 | 32 DEL = rm |
10 | 33 ifeq ($(MINGWOLD),yes) |
3110 | 34 CXXFLAGS := -O2 -fvtable-thunks |
10 | 35 else |
3110 | 36 CXXFLAGS := -O2 |
10 | 37 endif |
38 else | |
3110 | 39 CXXFLAGS := -O2 |
89 | 40 ifneq (sh.exe, $(SHELL)) |
41 DEL = rm | |
42 else | |
43 DEL = del | |
44 endif | |
10 | 45 endif |
2088 | 46 CXX := $(CROSS_COMPILE)g++ |
2674 | 47 WINDRES := $(CROSS_COMPILE)windres |
48 WINDRES_CXX = $(CXX) | |
49 WINDRES_FLAGS = --preprocessor="$(WINDRES_CXX) -E -xc" -DRC_INVOKED | |
6811 | 50 LIBS := -luuid -lgdi32 |
10 | 51 RES := gvimext.res |
52 DEFFILE = gvimext_ming.def | |
53 OBJ := gvimext.o | |
54 | |
55 DLL := gvimext.dll | |
56 | |
57 .PHONY: all all-before all-after clean clean-custom | |
58 | |
59 all: all-before $(DLL) all-after | |
60 | |
61 $(DLL): $(OBJ) $(RES) $(DEFFILE) | |
2674 | 62 $(CXX) $(LDFLAGS) $(CXXFLAGS) -s -o $@ \ |
10 | 63 -Wl,--enable-auto-image-base \ |
64 -Wl,--enable-auto-import \ | |
65 -Wl,--whole-archive \ | |
66 $^ \ | |
67 -Wl,--no-whole-archive \ | |
68 $(LIBS) | |
69 | |
70 gvimext.o: gvimext.cpp | |
71 $(CXX) $(CXXFLAGS) -DFEAT_GETTEXT -c $? -o $@ | |
72 | |
73 $(RES): gvimext_ming.rc | |
2674 | 74 $(WINDRES) $(WINDRES_FLAGS) --input-format=rc --output-format=coff -DMING $? -o $@ |
10 | 75 |
76 clean: clean-custom | |
89 | 77 -$(DEL) $(OBJ) $(RES) $(DLL) |