comparison src/Make_cyg_ming.mak @ 8641:0af716a4f5d2 v7.4.1610

commit https://github.com/vim/vim/commit/cc6cf9b9f9045a7d8b5923ea0c556e9a4c2567d3 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 19 20:51:35 2016 +0100 patch 7.4.1610 Problem: Compiler warnings for non-virtual destructor. Solution: Mark the classe final. (Ken Takata)
author Christian Brabandt <cb@256bit.org>
date Sat, 19 Mar 2016 21:00:04 +0100
parents caed4b2d305f
children 869727342e43
comparison
equal deleted inserted replaced
8640:51b3ead7e4da 8641:0af716a4f5d2
413 413
414 #>>>>> end of choices 414 #>>>>> end of choices
415 ########################################################################### 415 ###########################################################################
416 416
417 CFLAGS = -Iproto $(DEFINES) -pipe -march=$(ARCH) -Wall 417 CFLAGS = -Iproto $(DEFINES) -pipe -march=$(ARCH) -Wall
418 CXXFLAGS = -std=c++11
418 WINDRES_FLAGS = --preprocessor="$(WINDRES_CC) -E -xc" -DRC_INVOKED 419 WINDRES_FLAGS = --preprocessor="$(WINDRES_CC) -E -xc" -DRC_INVOKED
419 EXTRA_LIBS = 420 EXTRA_LIBS =
420 421
421 ifdef GETTEXT 422 ifdef GETTEXT
422 DEFINES += -DHAVE_GETTEXT -DHAVE_LOCALE_H 423 DEFINES += -DHAVE_GETTEXT -DHAVE_LOCALE_H
862 863
863 $(OUTDIR)/gui_w32.o: gui_w32.c $(INCL) 864 $(OUTDIR)/gui_w32.o: gui_w32.c $(INCL)
864 $(CC) -c $(CFLAGS) gui_w32.c -o $(OUTDIR)/gui_w32.o 865 $(CC) -c $(CFLAGS) gui_w32.c -o $(OUTDIR)/gui_w32.o
865 866
866 $(OUTDIR)/gui_dwrite.o: gui_dwrite.cpp $(INCL) gui_dwrite.h 867 $(OUTDIR)/gui_dwrite.o: gui_dwrite.cpp $(INCL) gui_dwrite.h
867 $(CC) -c $(CFLAGS) gui_dwrite.cpp -o $(OUTDIR)/gui_dwrite.o 868 $(CC) -c $(CFLAGS) $(CXXFLAGS) gui_dwrite.cpp -o $(OUTDIR)/gui_dwrite.o
868 869
869 $(OUTDIR)/if_cscope.o: if_cscope.c $(INCL) if_cscope.h 870 $(OUTDIR)/if_cscope.o: if_cscope.c $(INCL) if_cscope.h
870 $(CC) -c $(CFLAGS) if_cscope.c -o $(OUTDIR)/if_cscope.o 871 $(CC) -c $(CFLAGS) if_cscope.c -o $(OUTDIR)/if_cscope.o
871 872
872 # Remove -D__IID_DEFINED__ for newer versions of the w32api 873 # Remove -D__IID_DEFINED__ for newer versions of the w32api
873 $(OUTDIR)/if_ole.o: if_ole.cpp $(INCL) 874 $(OUTDIR)/if_ole.o: if_ole.cpp $(INCL)
874 $(CC) $(CFLAGS) -c -o $(OUTDIR)/if_ole.o if_ole.cpp 875 $(CC) $(CFLAGS) $(CXXFLAGS) -c -o $(OUTDIR)/if_ole.o if_ole.cpp
875 876
876 $(OUTDIR)/if_ruby.o: if_ruby.c $(INCL) 877 $(OUTDIR)/if_ruby.o: if_ruby.c $(INCL)
877 ifeq (16, $(RUBY)) 878 ifeq (16, $(RUBY))
878 $(CC) $(CFLAGS) -U_WIN32 -c -o $(OUTDIR)/if_ruby.o if_ruby.c 879 $(CC) $(CFLAGS) -U_WIN32 -c -o $(OUTDIR)/if_ruby.o if_ruby.c
879 endif 880 endif