Pārlūkot izejas kodu

* 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 -

Jonas Maebe 5 gadi atpakaļ
vecāks
revīzija
6fc79c7ed0
1 mainītis faili ar 4 papildinājumiem un 4 dzēšanām
  1. 4 4
      compiler/options.pas

+ 4 - 4
compiler/options.pas

@@ -991,14 +991,14 @@ begin
     system_arm_darwin,
     system_arm_darwin,
     system_i386_iphonesim:
     system_i386_iphonesim:
       begin
       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;
       end;
     system_aarch64_darwin,
     system_aarch64_darwin,
     system_x86_64_iphonesim:
     system_x86_64_iphonesim:
       begin
       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
       end
     else
     else
       internalerror(2012031001);
       internalerror(2012031001);