From 81741628a899c63f1517e0c2ef6a5730bffa24df Mon Sep 17 00:00:00 2001 From: AntiMoron Date: Wed, 25 Jan 2017 15:38:20 +0800 Subject: [PATCH] Fix cpp std version at least c++11 There's list loop enumeration and incompatible template codes which may cause compile errors due to different compilers. --- port/iOS/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/port/iOS/build.sh b/port/iOS/build.sh index beca600..44683f0 100755 --- a/port/iOS/build.sh +++ b/port/iOS/build.sh @@ -22,7 +22,7 @@ CPP_DEV_TARGET_LIST=(miphoneos-version-min mios-simulator-version-min) CPP_DEV_TARGET= CPP_STD_LIB_LIST=(libc++ libstdc++) CPP_STD_LIB= -CPP_STD_LIST=(c++03 c++11 c++14) +CPP_STD_LIST=(c++11 c++14) CPP_STD= function join { local IFS="$1"; shift; echo "$*"; } -- 2.7.4