From 550beca2ac02b6e4d1469f37eb026e7ddaa2cc30 Mon Sep 17 00:00:00 2001 From: kayan Date: Tue, 23 Apr 2024 11:59:53 +0800 Subject: [PATCH] stack size --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 71bffa7e..30d449c9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -92,5 +92,5 @@ target_compile_options(evm_runtime PUBLIC --no-missing-ricardian-clause) if (WITH_LARGE_STACK) target_link_options(evm_runtime PUBLIC --stack-size=50000000) else() - target_link_options(evm_runtime PUBLIC --stack-size=34880) + target_link_options(evm_runtime PUBLIC --stack-size=34848) endif()