Jelajahi Sumber

Merged revision(s) 31718 from trunk:
* Set ARMv6 as default CPU for arm-android to eliminate multi-threading issues on multi-core CPUs.
........

git-svn-id: branches/fixes_3_0@31919 -

yury 9 tahun lalu
induk
melakukan
38c0c1c23f
1 mengubah file dengan 3 tambahan dan 3 penghapusan
  1. 3 3
      compiler/options.pas

+ 3 - 3
compiler/options.pas

@@ -3695,11 +3695,11 @@ begin
       end;
     system_arm_android:
       begin
-        { set default cpu type to ARMv5T for Android unless specified otherwise }
+        { set default cpu type to ARMv6 for Android unless specified otherwise }
         if not option.CPUSetExplicitly then
-          init_settings.cputype:=cpu_armv5t;
+          init_settings.cputype:=cpu_armv6;
         if not option.OptCPUSetExplicitly then
-          init_settings.optimizecputype:=cpu_armv5t;
+          init_settings.optimizecputype:=cpu_armv6;
       end;
   end;