mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 10:19:28 +02:00
* WebAssembly internal linker: add the .tbss section size to the result of GetBssSize
This commit is contained in:
parent
8833fabb4b
commit
7b05051fc1
@ -378,6 +378,7 @@ end;
|
||||
function TInternalLinkerWasi.GetBssSize(aExeOutput: TExeOutput): QWord;
|
||||
begin
|
||||
Result:=GetExeSectionSize(aExeOutput,'.bss') +
|
||||
GetExeSectionSize(aExeOutput,'.tbss') +
|
||||
GetExeSectionSize(aExeOutput,'fpc.reshandles');
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user