makefile.mamemingw: add -std=gnu++11 to c*flags

This commit is contained in:
dinkc64 2015-11-15 13:53:22 +00:00
parent 151967a056
commit 8a837bc711
1 changed files with 2 additions and 2 deletions

View File

@ -156,7 +156,7 @@ AS = nasm
LDFLAGS = -static
CFLAGS = -pipe \
-std=gnu99 -O1 \
-std=gnu++11 -O1 \
-mwindows \
-fforce-addr -finline-limit=1200 -fthread-jumps \
-fexpensive-optimizations \
@ -165,7 +165,7 @@ CFLAGS = -pipe \
$(DEF) $(incdir)
CXXFLAGS = -pipe \
-O1 \
-std=gnu++11 -O1 \
-mwindows \
-fforce-addr -finline-limit=1200 -fthread-jumps \
-fexpensive-optimizations -fcheck-new \