Skip to content

Commit 91a047d

Browse files
committed
Removed support for iOS 8.4
1 parent 828b4d2 commit 91a047d

File tree

5 files changed

+9
-12
lines changed

5 files changed

+9
-12
lines changed

Makefile

Lines changed: 2 additions & 2 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.4 9.2 9.3
28-
IPHONESIMULATOR_VERSIONS ?= 5.1 6.1 7.1 8.2 8.4 9.2 9.3
27+
IPHONEOS_VERSIONS ?= 8.2 9.2 9.3
28+
IPHONESIMULATOR_VERSIONS ?= 5.1 6.1 7.1 8.2 9.2 9.3
2929

3030
IOS_SDKS ?= \
3131
$(addprefix iphoneos,$(IPHONEOS_VERSIONS)) \

docs/notes/platforms.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Currently, the supported versions of Xcode are:
3737
*Xcode 4.6 on MacOS X 10.7
3838
*Xcode 5.1 on MacOS X 10.8
3939
*Xcode 6.2 on MacOS X 10.9
40-
*Xcode 6.2, 6.4 and 7.2 on Mac OS X 10.10
40+
*Xcode 6.2 and 7.2 on Mac OS X 10.10
4141
*Xcode 7.3 on MacOS X 10.11
4242

4343
It is also possible to set other versions of Xcode, to allow testing on a wider range of iOS simulators. For instance, on Yosemite, you can add *Xcode 5.1* in the *Mobile Support* preferences, to let you test your stack on the *iOS Simulator 7.1*.
@@ -46,6 +46,5 @@ We currently support the following iOS Simulators:
4646
*6.1
4747
*7.1
4848
*8.2
49-
*8.4
5049
*9.2
5150
*9.3

ide

Submodule ide updated from d05b8a6 to a5e778b

ide-support/revdeploylibraryios.livecodescript

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ local sDeviceSDKs
1717

1818
-- SN-2015-03-24: [[ Bug 15037 ]] Add a consistent, strict list of the
1919
-- SDKs and device relying on the engines we provide in the shipped version
20-
-- SN-2015-05-01: [[ Xcode 6.4 ]] Add iOS 8.4 amongst the usable iOS SDK
2120
function deployUsableIosSdk
22-
return "5.1,6.1,7.1,8.2,8.4,9.2,9.3"
21+
return "5.1,6.1,7.1,8.2,9.2,9.3"
2322
end deployUsableIosSdk
2423

2524
// SN-2015-05-01: [[ Xcode 6.4 ]] Return the pair iOS SDK / Xcode for the current MacOS version
@@ -33,11 +32,10 @@ function deployGetIphoneOSes
3332
else if tMacVersion < 101000 then
3433
put "8.2,6.2" into tList[1]
3534
else if tMacVersion < 101100 then
36-
put "8.4,6.4" into tList[1]
37-
put "8.2,6.2" into tList[2]
35+
put "8.2,6.2" into tList[1]
3836
// Xcode 7.0 can be installed from Mac OSX 10.10.4 onwards
3937
if tMacVersion >= 101004 then
40-
put "9.2,7.2" into tList[3]
38+
put "9.2,7.2" into tList[2]
4139
end if
4240
else
4341
// Xcode 7.3 requires a Mac running OS X 10.11 or later

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="9.3 9.2 8.4 8.2"
6-
iphonesimulator_versions="9.3 9.2 8.4 8.2 7.1 6.1 5.1"
5+
iphoneos_versions="9.3 9.2 8.2"
6+
iphonesimulator_versions="9.3 9.2 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)