Explorar el Código

Merged revisions 7041 via svnmerge from
http://svn.freepascal.org/svn/fpc/trunk

r7041 (florian)
* made arm-wince default target for arm cross compilers hosted on windows

git-svn-id: branches/fixes_2_2@7042 -

florian hace 18 años
padre
commit
1895b1e171
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4 0
      compiler/systems.pas

+ 4 - 0
compiler/systems.pas

@@ -877,7 +877,11 @@ begin
   {$ifdef cpuarm}
   {$ifdef cpuarm}
     default_target(source_info.system);
     default_target(source_info.system);
   {$else cpuarm}
   {$else cpuarm}
+  {$ifdef WINDOWS}
+    default_target(system_arm_wince);
+  {$else WINDOWS}
     default_target(system_arm_linux);
     default_target(system_arm_linux);
+  {$endif WINDOWS}
   {$endif cpuarm}
   {$endif cpuarm}
 {$endif arm}
 {$endif arm}
 end;
 end;