.uppbox replace -std=c++0x with -std=c++11 for GCC and CLANG build methods.

git-svn-id: svn://ultimatepp.org/upp/trunk@10588 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
klugier 2016-12-25 20:23:58 +00:00
parent 4a617c9b5f
commit 1677d25bab
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
BUILDER = "CLANG";
COMPILER = "clang++";
COMMON_OPTIONS = "-Wno-logical-op-parentheses";
COMMON_CPP_OPTIONS = "-std=c++0x";
COMMON_CPP_OPTIONS = "-std=c++11";
COMMON_C_OPTIONS = "";
COMMON_FLAGS = "";
DEBUG_INFO = "2";

View file

@ -1,5 +1,5 @@
BUILDER = "GCC";
COMMON_CPP_OPTIONS = "-std=c++0x";
COMMON_CPP_OPTIONS = "-std=c++11";
DEBUG_INFO = "2";
DEBUG_BLITZ = "1";
DEBUG_LINKMODE = "1";