diff options
Diffstat (limited to 'config/ios.config')
-rw-r--r-- | config/ios.config | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/ios.config b/config/ios.config index 51e8134..20930b8 100644 --- a/config/ios.config +++ b/config/ios.config @@ -11,7 +11,10 @@ from cerbero.config import Architecture, DistroVersion # used later. System libs are passed through the -isysroot option allow_system_libs=False -min_version='6.0' +# The linker crashes if minversion is set to 6.0 +# Setting it to 5.2 (that doesn't exist) makes the minversion +# effectively be 6.0 without making it crash +min_version='5.2' if target_distro_version == DistroVersion.IOS_6_0: v = '6.0' |