From 2752be883c7aabb80f5258ead3a1d3ba54ad9b72 Mon Sep 17 00:00:00 2001 From: Kirill Zhdanovich Date: Tue, 29 Jan 2013 16:10:13 +0300 Subject: [PATCH] [iOS] 6.1 compilation fix --- tools/autobuild/detect_xcode.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/autobuild/detect_xcode.sh b/tools/autobuild/detect_xcode.sh index 2b951c985b..b4796cdd46 100644 --- a/tools/autobuild/detect_xcode.sh +++ b/tools/autobuild/detect_xcode.sh @@ -2,13 +2,15 @@ KNOWN_IOS_SDK_PATHS=( \ /Applications/XCode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk \ /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk \ - /Applications/XCode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk + /Applications/XCode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk \ + /Applications/XCode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk ) KNOWN_IOS_SDK_SIMULATOR_PATHS=( \ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk \ /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.0.sdk \ - /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator6.0.sdk + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator6.0.sdk \ + /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator6.1.sdk )