From ebc6627b7789e7a708ed754269f48799066a6916 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Fri, 27 Mar 2020 14:28:17 +0900 Subject: [PATCH] Bump DEFAULT_TASK_STACKSIZE for the sim The sim demands more stack because: * It's often 64-bit * It calls host OS libraries --- Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/Kconfig b/Kconfig index d085295eb5..d20c362fa9 100644 --- a/Kconfig +++ b/Kconfig @@ -29,6 +29,7 @@ config DEFAULT_SMALL config DEFAULT_TASK_STACKSIZE int "The default stack size for tasks" + default 8192 if ARCH_SIM default 2048 ---help--- The default stack size for tasks.