From e9c6668916199486ca407e1242b1d8bc90e7b95d Mon Sep 17 00:00:00 2001 From: qiuyu Date: Thu, 16 Feb 2023 14:53:47 +0800 Subject: [PATCH] Enlarge compiler space size limit Enlarge compiler space size limit Issue: #I6FJQZ Signed-off-by: qiuyu Change-Id: I7a1e6bea66f94c0026134a162f9b65ee80a4505c --- 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 e1ca0abdef..76053181fd 100644 --- a/es2panda/aot/main.cpp +++ b/es2panda/aot/main.cpp @@ -32,7 +32,7 @@ class MemManager { public: explicit MemManager() { - constexpr auto COMPILER_SIZE = 2048_MB; + constexpr auto COMPILER_SIZE = 8192_MB; MemConfig::Initialize(0, 0, COMPILER_SIZE, 0); PoolManager::Initialize(PoolType::MMAP); -- Gitee