Skip to content

Commit 7045ba1

Browse files
committed
build: Use Xcode 6.4
1 parent 53e69f3 commit 7045ba1

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

Makefile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ WINE ?= wine
2424

2525
# Some magic to control which versions of iOS we try to build. N.b. you may
2626
# also need to modify the buildbot configuration
27-
IPHONEOS_VERSIONS ?= 8.2 8.3
28-
IPHONESIMULATOR_VERSIONS ?= 5.1 6.1 7.1 8.2 8.3
27+
IPHONEOS_VERSIONS ?= 8.2 8.3 8.4
28+
IPHONESIMULATOR_VERSIONS ?= 5.1 6.1 7.1 8.2 8.3 8.4
2929

3030
IOS_SDKS ?= \
3131
$(addprefix iphoneos,$(IPHONEOS_VERSIONS)) \
@@ -138,9 +138,9 @@ compile-ios-%:
138138
$(XCODEBUILD) -project "build-ios-$*$(BUILD_SUBDIR)/$(BUILD_PROJECT).xcodeproj" -configuration $(BUILDTYPE)
139139

140140
# Provide some synonyms for "latest iOS SDK"
141-
$(addsuffix -ios-iphoneos,all config compile): %: %8.3
141+
$(addsuffix -ios-iphoneos,all config compile): %: %8.4
142142
@true
143-
$(addsuffix -ios-iphonesimulator,all config compile): %: %8.3
143+
$(addsuffix -ios-iphonesimulator,all config compile): %: %8.4
144144
@true
145145

146146
all_ios_subplatforms = iphoneos iphonesimulator $(IOS_SDKS)
@@ -165,4 +165,3 @@ all-win-%:
165165
$(MAKE) compile-win-$*
166166

167167
$(addsuffix -win,all config compile): %: %-x86
168-

config.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ fi
226226
if test -z "$XCODE_TARGET_SDK"; then
227227
case ${OS} in
228228
mac) XCODE_TARGET_SDK="macosx10.8" ;;
229-
ios) XCODE_TARGET_SDK="iphoneos8.3" ;;
229+
ios) XCODE_TARGET_SDK="iphoneos" ;;
230230
esac
231231
fi
232232

@@ -366,7 +366,7 @@ case ${OS} in
366366
export ANDROID_NDK
367367
export ANDROID_PLATFORM
368368
export ANDROID_SDK
369-
369+
370370
export JAVA_SDK="${ANDROID_JAVA_SDK}"
371371

372372
export AR="${ANDROID_AR}"

tools/setup_xcode_sdks.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
# Update these lists if you need different SDK versions!
44

5-
iphoneos_versions="8.3 8.2"
6-
iphonesimulator_versions="8.3 8.2 7.1 6.1 5.1"
5+
iphoneos_versions="8.4 8.2"
6+
iphonesimulator_versions="8.4 8.2 7.1 6.1 5.1"
77
macosx_versions="10.8 10.6"
88

99
# This tool creates the symlinks required for Xcode builds of LiveCode.

0 commit comments

Comments
 (0)