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")
10
10
CFLAGS += -mcpu=cortex-a72 -DBCM_VERSION=2711
11
11
CROSS_COMPILE = aarch64-none-elf-
12
12
SUFFIX = 8
13
- CIRCUITPY_MIN_GCC_VERSION ?= 10
14
13
else ifeq ($(CHIP_VARIANT), "bcm2837")
15
14
CFLAGS += -mcpu=cortex-a53 -DBCM_VERSION=2837
16
15
CROSS_COMPILE = aarch64-none-elf-
17
16
SUFFIX = 8
18
- CIRCUITPY_MIN_GCC_VERSION ?= 10
19
17
else ifeq ($(CHIP_VARIANT), "bcm2835")
20
18
CFLAGS += -mcpu=arm1176jzf-s -DBCM_VERSION=2835
21
19
CROSS_COMPILE = arm-none-eabi-
Original file line number Diff line number Diff line change @@ -25,3 +25,9 @@ USB_NUM_ENDPOINT_PAIRS = 8
25
25
USB_HIGHSPEED = 1
26
26
27
27
CIRCUITPY_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