Browse Source

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 18 years ago
parent
commit
1895b1e171
1 changed files with 4 additions and 0 deletions
  1. 4 0
      compiler/systems.pas

+ 4 - 0
compiler/systems.pas

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