From 6fc79c7ed04c57dcb67a64c126ee960fccc7370d Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Mon, 30 Dec 2019 16:36:57 +0000 Subject: [PATCH] * set default target iOS/iPhoneSim version to 9.0 so we no longer depend on crt.o existing, which is not shipped with the current SDKs anymore git-svn-id: trunk@43822 - --- compiler/options.pas | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/options.pas b/compiler/options.pas index d4987e6e96..bafd775265 100644 --- a/compiler/options.pas +++ b/compiler/options.pas @@ -991,14 +991,14 @@ begin system_arm_darwin, system_i386_iphonesim: begin - set_system_compvar('IPHONE_OS_VERSION_MIN_REQUIRED','30000'); - iPhoneOSVersionMin:='3.0'; + set_system_compvar('IPHONE_OS_VERSION_MIN_REQUIRED','90000'); + iPhoneOSVersionMin:='9.0'; end; system_aarch64_darwin, system_x86_64_iphonesim: begin - set_system_compvar('IPHONE_OS_VERSION_MIN_REQUIRED','70000'); - iPhoneOSVersionMin:='7.0'; + set_system_compvar('IPHONE_OS_VERSION_MIN_REQUIRED','90000'); + iPhoneOSVersionMin:='9.0'; end else internalerror(2012031001);