Browse Source

* set the default stack size for the WASI platform to 65536 bytes (this is the
default, used by the linker)

Nikolay Nikolov 3 years ago
parent
commit
c910ec814c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/systems/i_wasi.pas

+ 1 - 1
compiler/systems/i_wasi.pas

@@ -105,7 +105,7 @@ unit i_wasi;
                 maxCrecordalign : 16
               );
             first_parm_offset : 0;
-            stacksize   : 262144;
+            stacksize   : 65536;
             stackalign   : 4;
             abi          : abi_default;
             llvmdatalayout : 'todo';