Don't use xcrun for setting IOSSDK
authorT. Joseph Carter <iKarith@users.noreply.github.com>
Tue, 10 Mar 2015 08:29:47 +0000 (01:29 -0700)
committerT. Joseph Carter <iKarith@users.noreply.github.com>
Tue, 10 Mar 2015 08:29:47 +0000 (01:29 -0700)
Makefile.libretro

index 01a3c77..c5c271a 100644 (file)
@@ -69,7 +69,7 @@ else ifeq ($(platform), ios)
    APPLE := 1
 
 ifeq ($(IOSSDK),)
-   IOSSDK := $(shell xcrun -sdk iphoneos -show-sdk-path)
+   IOSSDK := $(shell xcodebuild -version -sdk iphoneos Path)
 endif
 
    CC = clang -arch armv7 -isysroot $(IOSSDK)