mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-08 10:39:29 +02:00
* implementation of TInternalLinkerWasi.DefaultLinkScript. Create a script that reads all the object files.
This commit is contained in:
parent
54eb8de658
commit
34445a912a
@ -289,8 +289,15 @@ end;
|
||||
{ TInternalLinkerWasi }
|
||||
|
||||
procedure TInternalLinkerWasi.DefaultLinkScript;
|
||||
var
|
||||
s: TCmdStr;
|
||||
begin
|
||||
{TODO}
|
||||
while not ObjectFiles.Empty do
|
||||
begin
|
||||
s:=ObjectFiles.GetFirst;
|
||||
if s<>'' then
|
||||
LinkScript.Concat('READOBJECT ' + maybequoted(s));
|
||||
end;
|
||||
end;
|
||||
|
||||
function TInternalLinkerWasi.GetCodeSize(aExeOutput: TExeOutput): QWord;
|
||||
|
Loading…
Reference in New Issue
Block a user