Skip to content
Snippets Groups Projects
Commit 11fa17a7 authored by Dean Camera's avatar Dean Camera
Browse files

Add architecture test for the non-standard avr-size patch, so that it is not...

Add architecture test for the non-standard avr-size patch, so that it is not tested on architectures where the patch isn't available.
parent 1eefbf90
No related branches found
No related tags found
No related merge requests found
......@@ -204,8 +204,11 @@ else ifeq ($(ARCH), UC3)
endif
# Determine flags to pass to the size utility based on its reported features (only invoke if size target required)
# and on an architecture where this non-standard patch is available
ifneq ($(ARCH), UC3)
size: SIZE_MCU_FLAG := $(shell $(CROSS)-size --help | grep -- --mcu > /dev/null && echo --mcu=$(MCU) )
size: SIZE_FORMAT_FLAG := $(shell $(CROSS)-size --help | grep -- --format=.*avr > /dev/null && echo --format=avr )
endif
# Pre-build informational target, to give compiler and project name information when building
build_begin:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment