File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,10 @@ ifeq ($(CHIP_VARIANT), "bcm2711")
1010CFLAGS += -mcpu=cortex-a72 -DBCM_VERSION=2711
1111CROSS_COMPILE = aarch64-none-elf-
1212SUFFIX = 8
13- CIRCUITPY_MIN_GCC_VERSION ?= 10
1413else ifeq ($(CHIP_VARIANT), "bcm2837")
1514CFLAGS += -mcpu=cortex-a53 -DBCM_VERSION=2837
1615CROSS_COMPILE = aarch64-none-elf-
1716SUFFIX = 8
18- CIRCUITPY_MIN_GCC_VERSION ?= 10
1917else ifeq ($(CHIP_VARIANT), "bcm2835")
2018CFLAGS += -mcpu=arm1176jzf-s -DBCM_VERSION=2835
2119CROSS_COMPILE = arm-none-eabi-
Original file line number Diff line number Diff line change @@ -25,3 +25,9 @@ USB_NUM_ENDPOINT_PAIRS = 8
2525USB_HIGHSPEED = 1
2626
2727CIRCUITPY_BUILD_EXTENSIONS ?= disk.img.zip,kernel8.img
28+
29+ ifeq ($(CHIP_VARIANT ) , "bcm2711")
30+ CIRCUITPY_MIN_GCC_VERSION ?= 10
31+ else ifeq ($(CHIP_VARIANT), "bcm2837")
32+ CIRCUITPY_MIN_GCC_VERSION ?= 10
33+ endif
You can’t perform that action at this time.
0 commit comments