Skip to content

Commit bdc2b2b

Browse files
authored
🔨 Fix Makefile GCC warning (MarlinFirmware#23957)
1 parent d806a66 commit bdc2b2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ CC_MIN:=$(shell $(CC) -dM -E - < /dev/null | grep __GNUC_MINOR__ | cut -f3 -d\ )
132132
CC_PATCHLEVEL:=$(shell $(CC) -dM -E - < /dev/null | grep __GNUC_PATCHLEVEL__ | cut -f3 -d\ )
133133
CC_VER:=$(shell echo $$(( $(CC_MAJ) * 10000 + $(CC_MIN) * 100 + $(CC_PATCHLEVEL) )))
134134
ifeq ($(shell test $(CC_VER) -lt 40901 && echo 1),1)
135-
@echo This version of GCC is likely broken. Enabling relocation workaround.
135+
$(warning This GCC version $(CC_VER) is likely broken. Enabling relocation workaround.)
136136
RELOC_WORKAROUND = 1
137137
endif
138138

0 commit comments

Comments
 (0)