diff options
author | Twinaphex | 2015-02-28 03:31:42 +0100 |
---|---|---|
committer | Twinaphex | 2015-02-28 03:31:42 +0100 |
commit | 5b28007ceb08fa39ea8d895f94598670042b7064 (patch) | |
tree | 4e465b6935b679707f58d5052b9393c6362ba0fb | |
parent | ad90c5cad0884a585a42a770e3759e0e9435cf58 (diff) | |
download | picogpsp-5b28007ceb08fa39ea8d895f94598670042b7064.tar.gz picogpsp-5b28007ceb08fa39ea8d895f94598670042b7064.tar.bz2 picogpsp-5b28007ceb08fa39ea8d895f94598670042b7064.zip |
(iOS) Use xcodebuild instead of xcrun
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |