Browse Source

--- Merging r14872 into '.':
U compiler/systems/t_win.pas
--- Merging r15707 into '.':
G compiler/systems/t_win.pas

# revisions: 14872,15707
------------------------------------------------------------------------
r14872 | jonas | 2010-02-06 21:22:15 +0100 (Sat, 06 Feb 2010) | 3 lines
Changed paths:
M /trunk/compiler/systems/t_win.pas

* changed linker target name for WinCE from arm-pe into arm-wince-pe
(mantis #15666)

------------------------------------------------------------------------
------------------------------------------------------------------------
r15707 | jonas | 2010-08-04 21:01:46 +0200 (Wed, 04 Aug 2010) | 2 lines
Changed paths:
M /trunk/compiler/systems/t_win.pas

* ld uses arm_wince_pe rather than arm-wince-pe (mantis #15666)

------------------------------------------------------------------------

git-svn-id: branches/fixes_2_4@16249 -

marco 14 years ago
parent
commit
496de356b8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/systems/t_win.pas

+ 1 - 1
compiler/systems/t_win.pas

@@ -1090,7 +1090,7 @@ implementation
         with Info do
         with Info do
          begin
          begin
            if target_info.system=system_arm_wince then
            if target_info.system=system_arm_wince then
-             targetopts:='-m armpe'
+             targetopts:='-m arm_wince_pe'
            else
            else
              targetopts:='-b pe-i386 -m i386pe';
              targetopts:='-b pe-i386 -m i386pe';
            ExeCmd[1]:='ld '+targetopts+' $OPT $GCSECTIONS $MAP $STRIP $APPTYPE $ENTRY  $IMAGEBASE $RELOC -o $EXE $RES';
            ExeCmd[1]:='ld '+targetopts+' $OPT $GCSECTIONS $MAP $STRIP $APPTYPE $ENTRY  $IMAGEBASE $RELOC -o $EXE $RES';