From patchwork Sun Dec 3 01:12:02 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 843954 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3yq93B05Qcz9s4q for ; Sun, 3 Dec 2017 12:12:21 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 98C8CC22014; Sun, 3 Dec 2017 01:12:13 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 8B5B3C21F97; Sun, 3 Dec 2017 01:12:10 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id B6226C21F97; Sun, 3 Dec 2017 01:12:08 +0000 (UTC) Received: from mail-qt0-f194.google.com (mail-qt0-f194.google.com [209.85.216.194]) by lists.denx.de (Postfix) with ESMTPS id 03ED6C21F34 for ; Sun, 3 Dec 2017 01:12:08 +0000 (UTC) Received: by mail-qt0-f194.google.com with SMTP id e2so17400853qti.0 for ; Sat, 02 Dec 2017 17:12:07 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id; bh=P8hfCPAnnNWikekLzu5fIf+9VIkqCnN4FIMGKsAOclk=; b=nvwDmmyJj1t3RiseS5pmBU/Wai8B9YCbaW4bgNj1MctS5JJSP8a3vXn4ShDlp+l4uk 37+5wqqIYd61rzKokcu/seoA4LRXBuyGFwSynkTUlux7C9zUezlo+k6F06TyzEbD4Rac 56jmf4rxwrsdz1MPubvDKw7JOKYv6RHbZyI8zAO/F9wfBrKJnr9jtfb3RLYkC4DHy0pF rTLpL0TggfqjbYofQrI0fgoWikSdiEcXSvRx8tD3w7whgumvdqwpMdlA6WZAkuuExlEy 1zru74+wPf3I0ddU7IKNvxDlIpraDbkHXRZrjCembdkrfE9l5PhlSbieg79XlHb0aghy zTWw== X-Gm-Message-State: AKGB3mK6ik/Cr09mt4F8CXHW4XAnWCPUMBxrqws0WniA6btO8tuOM7L2 EbxUl5ooi+AfaovXDJMl04Yi X-Google-Smtp-Source: AGs4zMZzQJXTj+ns+kJPh8tts9M/7bu5hgkCRCOkvmN8FaTvZIv1AcQVzKks4vy3hscpNu2gjtSb4A== X-Received: by 10.200.3.234 with SMTP id z42mr16277001qtg.25.1512263526725; Sat, 02 Dec 2017 17:12:06 -0800 (PST) Received: from localhost.localdomain (cpe-65-184-142-68.ec.res.rr.com. [65.184.142.68]) by smtp.gmail.com with ESMTPSA id v129sm6907971qkd.42.2017.12.02.17.12.05 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 02 Dec 2017 17:12:06 -0800 (PST) From: Tom Rini To: u-boot@lists.denx.de Date: Sat, 2 Dec 2017 20:12:02 -0500 Message-Id: <1512263522-7584-1-git-send-email-trini@konsulko.com> X-Mailer: git-send-email 2.7.4 Subject: [U-Boot] [PATCH] arm: Make gcc 6.0 or later a hard requirement now. X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Move the warning to an error as we have been promising would happen in this release. Signed-off-by: Tom Rini --- 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