Explorar el Código

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

Nikolay Nikolov hace 1 año
padre
commit
49395f2b00
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      compiler/systems/t_wasi.pas

+ 1 - 1
compiler/systems/t_wasi.pas

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