comparison src/GvimExt/Make_cyg.mak @ 5356:0978e99043d2 v7.4.030

updated for version 7.4.030 Problem: The -mno-cygwin argument is no longer supported by Cygwin. Solution: Remove the arguments. (Steve Hall)
author Bram Moolenaar <bram@vim.org>
date Thu, 19 Sep 2013 20:49:04 +0200
parents 1b26748fc911
children
comparison
equal deleted inserted replaced
5355:5a05fecfb2ad 5356:0978e99043d2
29 endif 29 endif
30 30
31 ifeq ($(CROSS),yes) 31 ifeq ($(CROSS),yes)
32 DEL = rm 32 DEL = rm
33 ifeq ($(MINGWOLD),yes) 33 ifeq ($(MINGWOLD),yes)
34 CXXFLAGS := -O2 -mno-cygwin -fvtable-thunks 34 CXXFLAGS := -O2 -fvtable-thunks
35 else 35 else
36 CXXFLAGS := -O2 -mno-cygwin 36 CXXFLAGS := -O2
37 endif 37 endif
38 else 38 else
39 CXXFLAGS := -O2 -mno-cygwin 39 CXXFLAGS := -O2
40 ifneq (sh.exe, $(SHELL)) 40 ifneq (sh.exe, $(SHELL))
41 DEL = rm 41 DEL = rm
42 else 42 else
43 DEL = del 43 DEL = del
44 endif 44 endif