Skip to content

arm-none-eabi-gcc (Arm GNU Toolchain 15.3.Rel1 (Build arm-15.149)) #11283

Description

@patrikgafvert

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions