From a4608bd008938e4e8853e5fffa1ca47c24abe4bb Mon Sep 17 00:00:00 2001 From: Nikolay Nikolov Date: Sun, 18 Aug 2024 11:13:44 +0300 Subject: [PATCH] * increased the default max memory for WebAssembly threads to 256 MiB --- compiler/parser.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/parser.pas b/compiler/parser.pas index eee5fd7e75..05461808eb 100644 --- a/compiler/parser.pas +++ b/compiler/parser.pas @@ -202,7 +202,7 @@ implementation system_wasm32_wasi: begin if ts_wasm_threads in init_settings.targetswitches then - maxheapsize:=33554432 + maxheapsize:=268435456 else maxheapsize:=0; end;