From e7974a28f7d023c14f253a888330c40e51f40054 Mon Sep 17 00:00:00 2001 From: Damien George Date: Mon, 19 Aug 2024 14:39:37 +1000 Subject: [PATCH] zephyr/mpconfigport: Enable mpz big integers. These are needed to be on par with other ports. Signed-off-by: Damien George --- ports/zephyr/mpconfigport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/zephyr/mpconfigport.h b/ports/zephyr/mpconfigport.h index e963e0d85897..26465cbb59b8 100644 --- a/ports/zephyr/mpconfigport.h +++ b/ports/zephyr/mpconfigport.h @@ -90,7 +90,7 @@ #define MICROPY_PY_ZEPHYR (1) #define MICROPY_PY_ZSENSOR (1) #define MICROPY_PY_SYS_MODULES (0) -#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_LONGLONG) +#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ) #define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_FLOAT) #define MICROPY_PY_BUILTINS_COMPLEX (0) #define MICROPY_ENABLE_SCHEDULER (1)