(iOS) Use xcodebuild instead of xcrun

This commit is contained in:
Twinaphex 2015-02-28 03:31:42 +01:00
parent ad90c5cad0
commit 5b28007ceb
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ else ifeq ($(platform), ios)
CPU_ARCH := arm
ifeq ($(IOSSDK),)
IOSSDK := $(shell xcrun -sdk iphoneos -show-sdk-path)
IOSSDK := $(shell xcodebuild -version -sdk iphoneos Path)
endif
CC = clang -arch armv7 -isysroot $(IOSSDK)