summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Halbert <halbert@adafruit.com>2021-01-22 10:30:12 -0500
committerGitHub <noreply@github.com>2021-01-22 10:30:12 -0500
commitf50edc290438900a05f371af15f9e82420809aef (patch)
treedd3c63e91e6537d0f888e44f4ba6314a603c64aa
parentec8a42d7c9f2cf8d66d6a1b7d87f62cc4800f40a (diff)
parente8e8c593acc1d31888c22d1f192856796dad5af2 (diff)
Merge pull request #4044 from DavePutz/rp2040_longint
RP2040 longint support
-rw-r--r--ports/raspberrypi/mpconfigport.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/ports/raspberrypi/mpconfigport.mk b/ports/raspberrypi/mpconfigport.mk
index a6211be73..138896d41 100644
--- a/ports/raspberrypi/mpconfigport.mk
+++ b/ports/raspberrypi/mpconfigport.mk
@@ -14,6 +14,9 @@ ifeq ($(LONGINT_IMPL),LONGLONG)
MPY_TOOL_LONGINT_IMPL = -mlongint-impl=longlong
endif
+# All raspberrypi ports have longints.
+LONGINT_IMPL = MPZ
+
ifndef CIRCUITPY_RP2PIO
CIRCUITPY_RP2PIO = 1
else