diff options
author | Neil <nyamatongwe@gmail.com> | 2016-03-07 09:54:27 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2016-03-07 09:54:27 +1100 |
commit | ee52a9e466d956214c9e12498a3f41159b54d678 (patch) | |
tree | 02d6ca09d336f8aac0fdbc489e87d49e833931f6 /win32/makefile | |
parent | 98e216dbae4e4d5dc174378406f9d5488ad09335 (diff) | |
download | scintilla-mirror-ee52a9e466d956214c9e12498a3f41159b54d678.tar.gz |
To avoid failures with MinGW 4.9 switch language standard from c++0x to gnu++0x.
MinGW 4.9 doesn't install a copy of gcc as cc.exe so explicitly set CC=gcc.
Diffstat (limited to 'win32/makefile')
-rw-r--r-- | win32/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile index 668812553..05d6f8f70 100644 --- a/win32/makefile +++ b/win32/makefile @@ -31,7 +31,7 @@ ifneq "$(shell g++ -c CheckD2D.cxx 2>&1)" "" D2DFLAGS=-DDISABLE_D2D endif -CXXBASEFLAGS=--std=c++0x -Wall -pedantic $(INCLUDEDIRS) $(D2DFLAGS) +CXXBASEFLAGS=--std=gnu++0x -Wall -pedantic $(INCLUDEDIRS) $(D2DFLAGS) ifdef CXX11_REGEX REFLAGS=-DCXX11_REGEX |