We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d806a66 commit bdc2b2bCopy full SHA for bdc2b2b
Marlin/Makefile
@@ -132,7 +132,7 @@ CC_MIN:=$(shell $(CC) -dM -E - < /dev/null | grep __GNUC_MINOR__ | cut -f3 -d\ )
132
CC_PATCHLEVEL:=$(shell $(CC) -dM -E - < /dev/null | grep __GNUC_PATCHLEVEL__ | cut -f3 -d\ )
133
CC_VER:=$(shell echo $$(( $(CC_MAJ) * 10000 + $(CC_MIN) * 100 + $(CC_PATCHLEVEL) )))
134
ifeq ($(shell test $(CC_VER) -lt 40901 && echo 1),1)
135
- @echo This version of GCC is likely broken. Enabling relocation workaround.
+ $(warning This GCC version $(CC_VER) is likely broken. Enabling relocation workaround.)
136
RELOC_WORKAROUND = 1
137
endif
138
0 commit comments