+ WASI internal linker: add all object sections, starting with '.bss' to the .bss section

This commit is contained in:
Nikolay Nikolov 2024-01-06 23:21:37 +02:00
parent 35345fe145
commit 49395f2b00

View File

@ -313,7 +313,7 @@ begin
LinkScript.Concat(' OBJSECTION .data.*'); LinkScript.Concat(' OBJSECTION .data.*');
LinkScript.Concat('ENDEXESECTION'); LinkScript.Concat('ENDEXESECTION');
LinkScript.Concat('EXESECTION .bss'); LinkScript.Concat('EXESECTION .bss');
LinkScript.Concat(' OBJSECTION .bss'); LinkScript.Concat(' OBJSECTION .bss*');
LinkScript.Concat('ENDEXESECTION'); LinkScript.Concat('ENDEXESECTION');
ScriptAddGenericSections('.debug_abbrev,.debug_info,.debug_line,.debug_aranges,.debug_ranges'); ScriptAddGenericSections('.debug_abbrev,.debug_info,.debug_line,.debug_aranges,.debug_ranges');