mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-10 18:25:58 +02:00
atari: add fastload and fastram flags for TOS exes. ideally this should become a directive or some option at some point
git-svn-id: trunk@35207 -
This commit is contained in:
parent
d78b1ffc14
commit
9ce4184dd9
@ -73,7 +73,7 @@ begin
|
||||
end
|
||||
else
|
||||
begin
|
||||
ExeCmd[1]:='vlink -b ataritos $OPT $STRIP -o $EXE -T $RES';
|
||||
ExeCmd[1]:='vlink -b ataritos $FLAGS $OPT $STRIP -o $EXE -T $RES';
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
@ -224,6 +224,7 @@ begin
|
||||
Replace(cmdstr,'$OPT',Info.ExtraOptions);
|
||||
Replace(cmdstr,'$EXE',maybequoted(ScriptFixFileName(current_module.exefilename)));
|
||||
Replace(cmdstr,'$RES',maybequoted(ScriptFixFileName(outputexedir+Info.ResName)));
|
||||
Replace(cmdstr,'$FLAGS','-tos-flags fastload,fastram');
|
||||
Replace(cmdstr,'$STRIP',StripStr);
|
||||
if rlinkpath<>'' Then
|
||||
DynLinkStr:='--rpath-link '+rlinkpath
|
||||
|
Loading…
Reference in New Issue
Block a user