From d9a6c24860235b495c6845366099da177f1927cf Mon Sep 17 00:00:00 2001 From: "T. Joseph Carter" Date: Mon, 23 Mar 2015 01:03:15 -0700 Subject: [PATCH] Revert e712e5f for now. It's not right, but right takes time and this works now. --- libretro-config.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libretro-config.sh b/libretro-config.sh index e37cba74..8d6eb29e 100755 --- a/libretro-config.sh +++ b/libretro-config.sh @@ -34,9 +34,9 @@ case "$platform" in MIN_IOS7="-miphoneos-version-min=7.0" # Use generic names rather than gcc/clang to better support both - CC="cc -arch armv7 -isysroot $IOSSDK" - CXX="c++ -arch armv7 -isysroot $IOSSDK" - CXX11="clang++ -std=c++11 -stdlib=libc++ -arch armv7 -isysroot $IOSSDK" + CC="cc -arch armv7 -miphoneos-version-min=5.0 -isysroot $IOSSDK" + CXX="c++ -arch armv7 -miphoneos-version-min=5.0 -isysroot $IOSSDK" + CXX11="clang++ -std=c++11 -stdlib=libc++ -arch armv7 -miphoneos-version-min=5.0 -isysroot $IOSSDK" ;; theos_ios)