unix/variants/minimal: Enable C stack checking.

This unix minimal variant already has a few other things enabled beyond the
default minimal configuration, and C-stack checking is arguably more
important than those, so enable it.  This helps to get some of the stress
tests passing on this variant.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George
2025-09-15 13:41:35 +10:00
parent 7db50ccf5f
commit 688016c6a2

View File

@@ -49,6 +49,7 @@
#define MICROPY_COMP_DOUBLE_TUPLE_ASSIGN (1)
#define MICROPY_ENABLE_COMPILER (1)
#define MICROPY_ENABLE_EXTERNAL_IMPORT (1)
#define MICROPY_STACK_CHECK (1)
#define MICROPY_FULL_CHECKS (1)
#define MICROPY_HELPER_REPL (1)
#define MICROPY_KBD_EXCEPTION (1)