Merge pull request #4044 from DavePutz/rp2040_longint

RP2040 longint support
This commit is contained in:
Dan Halbert 2021-01-22 10:30:12 -05:00 committed by GitHub
commit f50edc2904
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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