Revert "Use '-std=c++0x', it causes the executable to core dump.

This reverts commit 2087c2aeb7.
This commit is contained in:
Vinnie Falco
2013-08-10 03:04:42 -07:00
parent 4073c99bdb
commit 73349384c2

View File

@@ -190,8 +190,6 @@ env.Append(CXXFLAGS = ['-frtti'])
if (int(GCC_VERSION[0]) > 4 or (int(GCC_VERSION[0]) == 4 and int(GCC_VERSION[1]) >= 7)):
env.Append(CXXFLAGS = ['-std=c++11'])
elif (int(GCC_VERSION[0]) == 4 and int(GCC_VERSION[1]) == 6):
env.Append(CXXFLAGS = ['-std=c++0x'])
# FreeBSD doesn't support O_DSYNC
if FreeBSD: