(libretro-build.sh) Use c++ for CXX - is backwards compatible with

OSX 10.6.8 which didn't have clang++
This commit is contained in:
twinaphex 2013-12-03 02:29:09 +01:00
parent 88a7fe40da
commit 27de3ae179
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ FORMAT_COMPILER_TARGET_ALT=ios
FORMAT_EXT=dylib
JOBS=7
MAKE=make
CXX11="clang++ -std=c++11 -stdlib=libc++"
CXX11="clang++ -std=c++11 -stdlib=libc++ -miphoneos-version-min=5.0"
IOS=1
export IOSSDK=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk/

View File

@ -66,7 +66,7 @@ fi
if [ -z "$CXX" ]; then
if [ $FORMAT_COMPILER_TARGET = "osx" ]; then
CXX=clang++
CXX=c++
CXX11="clang++ -std=c++11 -stdlib=libc++"
elif [ "$(expr substr $(uname -s) 1 7)" = "MINGW32" ]; then
CXX=mingw32-g++