From ff8aa726ae7d7dd68c9474baa4534c3766de60b4 Mon Sep 17 00:00:00 2001 From: jiadexiang Date: Wed, 12 Apr 2023 18:59:31 +0800 Subject: [PATCH] Description: adjust context size definition after es2015 enabled IssueNo:I6V62F Feature or Bugfix: Feature Binary Source:No Signed-off-by: jiadexiang --- jerry-port/config-jupiter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jerry-port/config-jupiter.h b/jerry-port/config-jupiter.h index f7efb094..8de85293 100644 --- a/jerry-port/config-jupiter.h +++ b/jerry-port/config-jupiter.h @@ -34,7 +34,7 @@ #endif /* JS_TASK_HEAP_SIZE */ // >= 51400 + (64-48) * 1024 + 8 -#define JS_TASK_CONTEXT_AND_HEAP_SIZE_BYTE (JS_TASK_HEAP_SIZE * CONVERTION_RATIO + 2248 + 16) +#define JS_TASK_CONTEXT_AND_HEAP_SIZE_BYTE (JS_TASK_HEAP_SIZE * CONVERTION_RATIO + 5000 + 16) #ifndef JERRY_ENABLE_SNAPSHOT_VERSION_CHECK #define JERRY_ENABLE_SNAPSHOT_VERSION_CHECK (1) -- Gitee