Parcourir la source

🔨 Fix Makefile GCC warning (#23957)

David Forrest il y a 2 ans
Parent
révision
bdc2b2b965
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      Marlin/Makefile

+ 1
- 1
Marlin/Makefile Voir le fichier

@@ -132,7 +132,7 @@ CC_MIN:=$(shell $(CC) -dM -E - < /dev/null | grep __GNUC_MINOR__ | cut -f3 -d\ )
132 132
 CC_PATCHLEVEL:=$(shell $(CC) -dM -E - < /dev/null | grep __GNUC_PATCHLEVEL__ | cut -f3 -d\ )
133 133
 CC_VER:=$(shell echo $$(( $(CC_MAJ) * 10000 + $(CC_MIN) * 100 + $(CC_PATCHLEVEL) )))
134 134
 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.)
136 136
   RELOC_WORKAROUND = 1
137 137
 endif
138 138
 

Chargement…
Annuler
Enregistrer