From ba1b15699986cafd63060c06f8a96b0fb26ade64 Mon Sep 17 00:00:00 2001 From: Like Date: Fri, 22 Aug 2025 15:57:31 +0800 Subject: [PATCH] fix: increase an file limit Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/ICU9R4 Signed-off-by: Like Change-Id: I0e67b61853fff9408187992abdf184161c7813b6 --- ecmascript/js_runtime_options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecmascript/js_runtime_options.cpp b/ecmascript/js_runtime_options.cpp index 33582f0066..ff68863564 100644 --- a/ecmascript/js_runtime_options.cpp +++ b/ecmascript/js_runtime_options.cpp @@ -1680,7 +1680,7 @@ void JSRuntimeOptions::SetOptionsForTargetCompilation() SetCompilerEnableLiteCG(true); SetEnableOptPGOType(true); if (IsCompilerAnFileMaxByteSizeDefault()) { - SetCompilerAnFileMaxByteSize(100_MB); + SetCompilerAnFileMaxByteSize(300_MB); } } -- Gitee