From ecd1272d16ff3500557177d46cc7d46edd7d3094 Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 17 Dec 2015 22:15:04 +0000 Subject: [PATCH] esp8266: Switch bignum implementation from long-long to mpz. --- esp8266/mpconfigport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp8266/mpconfigport.h b/esp8266/mpconfigport.h index 3cc2d9ad5f..c80f78d45c 100644 --- a/esp8266/mpconfigport.h +++ b/esp8266/mpconfigport.h @@ -34,7 +34,7 @@ #define MICROPY_PY_SYS_EXIT (1) #define MICROPY_PY_SYS_STDFILES (1) #define MICROPY_CPYTHON_COMPAT (0) -#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_LONGLONG) +#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ) #define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_NONE) #define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_TERSE) #define MICROPY_MODULE_FROZEN (1)