Browse Source

+ add the -n option first to the sdcc-sdld linker, so it doesn't echo all the data on the screen. For
debugging purposes, this can be overriden with the -k-p fpc option.

git-svn-id: branches/z80@44607 -

nickysn 5 years ago
parent
commit
891939d7ea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/systems/t_embed.pas

+ 1 - 1
compiler/systems/t_embed.pas

@@ -1974,7 +1974,7 @@ procedure TlinkerEmbedded_SdccSdld.SetDefaultInfo;
   begin
     with Info do
      begin
-       ExeCmd[1]:='sdcc-sdld $OPT -i $MAP $EXE -f $RES'
+       ExeCmd[1]:='sdcc-sdld -n $OPT -i $MAP $EXE -f $RES'
        //-g '+platform_select+' $OPT $DYNLINK $STATIC $GCSECTIONS $STRIP $MAP -L. -o $EXE -T $RES';
      end;
   end;