|
|
@@ -14,9 +14,15 @@ CFLAGS += -Wno-error=undef -Wno-error=unused-parameter -Wno-error=cast-align
|
|
|
|
|
|
# due to tusb_hal_nrf_power_event
|
|
|
GCCVERSION = $(firstword $(subst ., ,$(shell arm-none-eabi-gcc -dumpversion)))
|
|
|
+ifeq ($(UNAME),Windows)
|
|
|
+ifeq ($(shell if $(GCCVERSION) geq 8 echo 1), 1)
|
|
|
+CFLAGS += -Wno-error=cast-function-type
|
|
|
+endif
|
|
|
+else
|
|
|
ifeq ($(shell expr $(GCCVERSION) \>= 8), 1)
|
|
|
CFLAGS += -Wno-error=cast-function-type
|
|
|
endif
|
|
|
+endif
|
|
|
|
|
|
# All source paths should be relative to the top level.
|
|
|
LD_FILE = hw/mcu/nordic/nrfx/mdk/nrf52840_xxaa.ld
|