diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-09-30 16:56:02 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-09-30 16:56:02 +0200 |
commit | 2369e35b39e4e5d1d586cf808770c4fb91faae72 (patch) | |
tree | 3069da7fa2137aa330a1027e13f7f5fd7b0cf36e /src/GvimExt | |
parent | acd6a049f68d0a69a96240c2d928a7ddda9c4c69 (diff) | |
download | vim-git-2369e35b39e4e5d1d586cf808770c4fb91faae72.tar.gz |
updated for version 7.3.326v7.3.326
Problem: MingW 4.6 no longer supports the -mno-cygwin option.
Solution: Split the Cygwin and MingW makefiles. (Matsushita Shougo)
Diffstat (limited to 'src/GvimExt')
-rw-r--r-- | src/GvimExt/Make_ming.mak | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/GvimExt/Make_ming.mak b/src/GvimExt/Make_ming.mak index d764e3f04..9c383b0b1 100644 --- a/src/GvimExt/Make_ming.mak +++ b/src/GvimExt/Make_ming.mak @@ -1,6 +1,6 @@ # Project: gvimext # Generates gvimext.dll with gcc. -# Can be used for Cygwin and MingW (MingW ignores -mno-cygwin) +# To be used with MingW. # # Originally, the DLL base address was fixed: -Wl,--image-base=0x1C000000 # Now it is allocated dymanically by the linker by evaluating all DLLs @@ -31,12 +31,12 @@ endif ifeq ($(CROSS),yes) DEL = rm ifeq ($(MINGWOLD),yes) -CXXFLAGS := -O2 -mno-cygwin -fvtable-thunks +CXXFLAGS := -O2 -fvtable-thunks else -CXXFLAGS := -O2 -mno-cygwin +CXXFLAGS := -O2 endif else -CXXFLAGS := -O2 -mno-cygwin +CXXFLAGS := -O2 ifneq (sh.exe, $(SHELL)) DEL = rm else @@ -75,4 +75,3 @@ $(RES): gvimext_ming.rc clean: clean-custom -$(DEL) $(OBJ) $(RES) $(DLL) - |