From 16b6c7eec0839718de972421c349e574b07a8f99 Mon Sep 17 00:00:00 2001 From: pengbiao Date: Wed, 17 Aug 2022 23:34:13 +0800 Subject: [PATCH] Increase OOM threshold for es2panda I5MTJAwq Signed-off-by: pengbiao Change-Id: Iabe265132ef67afedefabf68a33d0edf16d540ad --- es2panda/aot/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es2panda/aot/main.cpp b/es2panda/aot/main.cpp index f96cb711a1..3bc260f815 100644 --- a/es2panda/aot/main.cpp +++ b/es2panda/aot/main.cpp @@ -39,7 +39,7 @@ class MemManager { public: explicit MemManager() { - constexpr auto COMPILER_SIZE = 128_MB; + constexpr auto COMPILER_SIZE = 512_MB; MemConfig::Initialize(0, 0, COMPILER_SIZE, 0); PoolManager::Initialize(PoolType::MMAP); -- Gitee