diff options
author | Thomas Weißschuh <thomas@t-8ch.de> | 2023-08-23 21:55:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-23 20:55:03 +0100 |
commit | f699fde7d979a731ad72892588328a00fe9840d9 (patch) | |
tree | 529a332b40e163624ad9c7a4449c8c44b9273ebe /platforms | |
parent | f7cf066e0fe0a7063e54ac070318eb6145f040b2 (diff) |
Generalize AVR -Werror=array-bounds workaround (#21798)
GCC 13 needs the same workaround as GCC 12.
To avoid having to maintain an ever-growing list of broken versions
apply the workaround wherever it can be used.
If at some point a fixed version of GCC is released the workaround can
be disabled for those fixed versions.
See #17064
Diffstat (limited to 'platforms')
-rw-r--r-- | platforms/avr/platform.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/platforms/avr/platform.mk b/platforms/avr/platform.mk index 39a11b28e4..09028d80af 100644 --- a/platforms/avr/platform.mk +++ b/platforms/avr/platform.mk @@ -12,8 +12,7 @@ HEX = $(OBJCOPY) -O $(FORMAT) -R .eeprom -R .fuse -R .lock -R .signature EEP = $(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 --no-change-warnings -O $(FORMAT) BIN = -# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105523 -ifneq ($(findstring 12.,$(shell avr-gcc --version 2>/dev/null)),) +ifeq ("$(shell echo "int main(){}" | $(CC) --param=min-pagesize=0 -x c - -o /dev/null 2>&1)", "") COMPILEFLAGS += --param=min-pagesize=0 endif |