From 8cf587c66e6844398e0c0d952c4134534c44cfe6 Mon Sep 17 00:00:00 2001 From: zhangrengao Date: Mon, 5 Dec 2022 12:22:40 +0800 Subject: [PATCH] fixed 401c631 from https://gitee.com/zhangrengao1/ark_ts2abc/pulls/744 fixed f5d7d89 from https://gitee.com/zhangrengao1/ark_ts2abc/pulls/743 Modify compiler size of es2abc Issue: https://gitee.com/openharmony/arkcompiler_ets_frontend/issues/I64LMB Signed-off-by: zhangrengao Change-Id: I1b90738dfa4f57c19ba2216c76a0dfc183f15988 --- 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 3b936d3918..e1ca0abdef 100644 --- a/es2panda/aot/main.cpp +++ b/es2panda/aot/main.cpp @@ -32,7 +32,7 @@ class MemManager { public: explicit MemManager() { - constexpr auto COMPILER_SIZE = 512_MB; + constexpr auto COMPILER_SIZE = 2048_MB; MemConfig::Initialize(0, 0, COMPILER_SIZE, 0); PoolManager::Initialize(PoolType::MMAP); -- Gitee