don't undef __STRICT_ANSI__ since it's not necessary with gnu++11

This commit is contained in:
Andrew Tonner 2017-01-18 19:00:42 -08:00
parent 83ea8b0779
commit 7ef9f10712
1 changed files with 2 additions and 1 deletions

View File

@ -16,7 +16,8 @@ import datetime
import shutil
MACEMU_CFLAGS = "-mwin32"
MACEMU_CXXFLAGS = "-mwin32 -std=gnu++11 -U__STRICT_ANSI__"
# TODO check if __STRICT_ANSI__ is still required since we switched to gnu++11
MACEMU_CXXFLAGS = "-mwin32 -std=gnu++11"
script_path = os.path.dirname(os.path.abspath(__file__))