summaryrefslogtreecommitdiff
path: root/arch/arm/config.mk
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2017-12-03 04:11:31 +0300
committerTom Rini <trini@konsulko.com>2017-12-04 18:23:53 +0300
commit6b867dabe84bae1e74e88f4af620c26cb793c4c2 (patch)
treeccf4806ed34202a9d6d1eda35744dd547debb825 /arch/arm/config.mk
parent448df354b0725093f857e15a4ab5e849c4ecf3e0 (diff)
downloadu-boot-6b867dabe84bae1e74e88f4af620c26cb793c4c2.tar.xz
arm: Make gcc 6.0 or later a hard requirement now.
Move the warning to an error as we have been promising would happen in this release. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/config.mk')
-rw-r--r--arch/arm/config.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/config.mk b/arch/arm/config.mk
index 1a77779db4..02f61fcc3c 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