From bc4e46fbd0f8386d1b2b05c13e07a042c0207c02 Mon Sep 17 00:00:00 2001 From: klugier Date: Sun, 25 Dec 2016 20:23:58 +0000 Subject: [PATCH] .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 --- uppbox/Scripts/CLANGMK.bm | 2 +- uppbox/Scripts/GCCMK.bm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/uppbox/Scripts/CLANGMK.bm b/uppbox/Scripts/CLANGMK.bm index bb3834335..9844a01cf 100644 --- a/uppbox/Scripts/CLANGMK.bm +++ b/uppbox/Scripts/CLANGMK.bm @@ -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"; diff --git a/uppbox/Scripts/GCCMK.bm b/uppbox/Scripts/GCCMK.bm index c9f18026f..2f79014c8 100644 --- a/uppbox/Scripts/GCCMK.bm +++ b/uppbox/Scripts/GCCMK.bm @@ -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";