diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-02-21 19:19:59 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-02-22 22:23:20 +0100 |
commit | 94bf1e87c3f5b46898961fbe0f7a0553f5d6c420 (patch) | |
tree | c0935f0142e21719d113858296982d820034c34c /config | |
parent | 825eb1a8d7069471f2d84d80be57caf6641f51c7 (diff) |
ios: add support for SDK 6.1 and make this one the deafult
Diffstat (limited to 'config')
-rw-r--r-- | config/cross-ios-arm7.cbc | 2 | ||||
-rw-r--r-- | config/cross-ios-x86.cbc | 2 | ||||
-rw-r--r-- | config/ios.config | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/config/cross-ios-arm7.cbc b/config/cross-ios-arm7.cbc index 433e074b..bef5d1e4 100644 --- a/config/cross-ios-arm7.cbc +++ b/config/cross-ios-arm7.cbc @@ -3,6 +3,6 @@ from cerbero.config import Platform, Architecture, Distro, DistroVersion target_platform=Platform.IOS target_arch=Architecture.ARMv7 target_distro=Distro.IOS -target_distro_version=DistroVersion.IOS_6_0 +target_distro_version=DistroVersion.IOS_6_1 host='arm-apple-darwin' ios_platform='iPhoneOS' diff --git a/config/cross-ios-x86.cbc b/config/cross-ios-x86.cbc index 8f3742b0..98963af7 100644 --- a/config/cross-ios-x86.cbc +++ b/config/cross-ios-x86.cbc @@ -3,6 +3,6 @@ from cerbero.config import Platform, Architecture, Distro, DistroVersion target_platform=Platform.IOS target_arch=Architecture.X86 target_distro=Distro.IOS -target_distro_version=DistroVersion.IOS_6_0 +target_distro_version=DistroVersion.IOS_6_1 host='i386-apple-darwin' ios_platform='iPhoneSimulator' diff --git a/config/ios.config b/config/ios.config index 3b12e871..9fe2b53f 100644 --- a/config/ios.config +++ b/config/ios.config @@ -16,6 +16,9 @@ min_version='6.0' if target_distro_version == DistroVersion.IOS_6_0: v = '6.0' v1 = '60' +elif target_distro_version == DistroVersion.IOS_6_1: + v = '6.1' + v1 = '61' else: raise FatalError("Distro version %s not supported" %(target_distro_version)) |