summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-12-17 22:15:04 +0000
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-03-02 22:43:10 +0200
commitecd1272d16ff3500557177d46cc7d46edd7d3094 (patch)
tree0431ac522a5bf5bc2a1650601e2be59fceaf839e /esp8266
parent3d1d92acfcfbc47677466409fc9f60effae37678 (diff)
downloadmicropython-ecd1272d16ff3500557177d46cc7d46edd7d3094.tar.gz
micropython-ecd1272d16ff3500557177d46cc7d46edd7d3094.zip
esp8266: Switch bignum implementation from long-long to mpz.
Diffstat (limited to 'esp8266')
-rw-r--r--esp8266/mpconfigport.h2
1 files changed, 1 insertions, 1 deletions
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)