[U-Boot] [PATCH] arm: Make gcc 6.0 or later a hard requirement now.
Tom Rini
trini at konsulko.com
Sun Dec 3 01:12:02 UTC 2017
Move the warning to an error as we have been promising would happen in
this release.
Signed-off-by: Tom Rini <trini at konsulko.com>
---
arch/arm/config.mk | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/config.mk b/arch/arm/config.mk
index 1a77779db4de..02f61fcc3cba 100644
--- a/arch/arm/config.mk
+++ b/arch/arm/config.mk
@@ -68,8 +68,8 @@ endif
checkgcc6:
@if test "$(call cc-name)" = "gcc" -a \
"$(call cc-version)" -lt "0600"; then \
- echo -n '*** Your GCC is older than 6.0 and will not be '; \
- echo 'supported starting in v2018.01.'; \
+ echo '*** Your GCC is older than 6.0 and is not supported'; \
+ false; \
fi
--
2.7.4
More information about the U-Boot
mailing list