From efa60ec5cc848d8cc8267a7ac57b0023aaf33263 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sun, 13 Apr 2025 13:59:53 +0800 Subject: [PATCH] Update config.h --- include/pocketpy/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/pocketpy/config.h b/include/pocketpy/config.h index 1ea0eb68..8b033e90 100644 --- a/include/pocketpy/config.h +++ b/include/pocketpy/config.h @@ -27,7 +27,7 @@ // This is the maximum size of the value stack in py_TValue units // The actual size in bytes equals `sizeof(py_TValue) * PK_VM_STACK_SIZE` #ifndef PK_VM_STACK_SIZE // can be overridden by cmake - #define PK_VM_STACK_SIZE 8192 + #define PK_VM_STACK_SIZE 16384 #endif // This is the maximum number of local variables in a function