Adafruit CircuitPython 10.3.0 on 2026-09-01; Raspberry Pi Pico 2 W with rp2350a
Just what to inform to the community with the new gcc compiler you need to add this
to your compile make line.
CFLAGS="-Wno-array-bounds" make BOARD=raspberry_pi_pico2_w
Or patch the file ports/raspberrypi/Makefile
@@ -728,7 +728,8 @@
# are compiled out.
$(patsubst %.c,$(BUILD)/%.o,$(SRC_MBEDTLS)) $(OBJ_MBEDTLS): CFLAGS += \
-Wno-suggest-attribute=format \
- -Wno-unused-but-set-variable
+ -Wno-unused-but-set-variable \
+ -Wno-array-bounds
else
OBJ_MBEDTLS :=
endif
Adafruit CircuitPython 10.3.0 on 2026-09-01; Raspberry Pi Pico 2 W with rp2350a
Just what to inform to the community with the new gcc compiler you need to add this
to your compile make line.
CFLAGS="-Wno-array-bounds" make BOARD=raspberry_pi_pico2_wOr patch the file ports/raspberrypi/Makefile