|
@@ -77,6 +77,10 @@ type
|
|
TInternalLinkerWasi=class(tinternallinker)
|
|
TInternalLinkerWasi=class(tinternallinker)
|
|
protected
|
|
protected
|
|
procedure DefaultLinkScript;override;
|
|
procedure DefaultLinkScript;override;
|
|
|
|
+
|
|
|
|
+ function GetCodeSize(aExeOutput: TExeOutput): QWord;override;
|
|
|
|
+ function GetDataSize(aExeOutput: TExeOutput): QWord;override;
|
|
|
|
+ function GetBssSize(aExeOutput: TExeOutput): QWord;override;
|
|
public
|
|
public
|
|
constructor create;override;
|
|
constructor create;override;
|
|
|
|
|
|
@@ -289,6 +293,24 @@ begin
|
|
{TODO}
|
|
{TODO}
|
|
end;
|
|
end;
|
|
|
|
|
|
|
|
+function TInternalLinkerWasi.GetCodeSize(aExeOutput: TExeOutput): QWord;
|
|
|
|
+begin
|
|
|
|
+ {TODO}
|
|
|
|
+ Result:=0;
|
|
|
|
+end;
|
|
|
|
+
|
|
|
|
+function TInternalLinkerWasi.GetDataSize(aExeOutput: TExeOutput): QWord;
|
|
|
|
+begin
|
|
|
|
+ {TODO}
|
|
|
|
+ Result:=0;
|
|
|
|
+end;
|
|
|
|
+
|
|
|
|
+function TInternalLinkerWasi.GetBssSize(aExeOutput: TExeOutput): QWord;
|
|
|
|
+begin
|
|
|
|
+ {TODO}
|
|
|
|
+ Result:=0;
|
|
|
|
+end;
|
|
|
|
+
|
|
constructor TInternalLinkerWasi.create;
|
|
constructor TInternalLinkerWasi.create;
|
|
begin
|
|
begin
|
|
inherited create;
|
|
inherited create;
|