Files
tinyUSB/examples/build_system/make/cpu/cortex-a72.mk
hathach 51312f70fd move make to examples/build_system
add -Wl,--no-warn-rwx-segment for gcc 12+
2023-11-23 11:44:14 +07:00

13 lines
168 B
Makefile

ifeq ($(TOOLCHAIN),gcc)
CFLAGS += \
-mcpu=cortex-a72 \
else ifeq ($(TOOLCHAIN),iar)
CFLAGS += \
--cpu cortex-a72 \
ASFLAGS += \
--cpu cortex-a72 \
endif