From patchwork Mon Aug 27 02:28:08 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 10576365 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id D722114BD for ; Mon, 27 Aug 2018 02:38:54 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B6AC829729 for ; Mon, 27 Aug 2018 02:38:54 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id A6D892972C; Mon, 27 Aug 2018 02:38:54 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CCA4029729 for ; Mon, 27 Aug 2018 02:38:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726991AbeH0GX1 (ORCPT ); Mon, 27 Aug 2018 02:23:27 -0400 Received: from condef-10.nifty.com ([202.248.20.75]:54347 "EHLO condef-10.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726968AbeH0GX1 (ORCPT ); Mon, 27 Aug 2018 02:23:27 -0400 X-Greylist: delayed 382 seconds by postgrey-1.27 at vger.kernel.org; Mon, 27 Aug 2018 02:23:26 EDT Received: from conuserg-07.nifty.com ([10.126.8.70])by condef-10.nifty.com with ESMTP id w7R2StCO032649 for ; Mon, 27 Aug 2018 11:28:55 +0900 Received: from pug.e01.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-07.nifty.com with ESMTP id w7R2SIW7018677; Mon, 27 Aug 2018 11:28:19 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-07.nifty.com w7R2SIW7018677 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1535336899; bh=RQt8XGarQHrdI24EZgxunoPdnuXMQ6n80w7QzG/VQNE=; h=From:To:Cc:Subject:Date:From; b=xC4uWdk6reh+QtqUX8OBa1CmsEB+ifAY8L7I+w3suddlItgz74mdUZGWedkrmVyUZ ca2W78b+AG1VN7d/y4m276y9mN2q0qgJE8dL37Mel2I910O4vLG2nV+Fe5JRUfkrX/ WEw6auBAz/Q+wZ6ONFtD6V1YT5YyGjP8xdsc00avW1XkHmLe3fq3Co/OZPKqlf4p1w 2ygIvwOZOof63GjWaXWYMsY3qqXqY7TObjk2zRw6zcbebkrh/lBYT424ULRvrqLp4o bSsb5l4S20htF7d4VYAkq4h3JENw4sxQidiX7O0inP8zJ55BvGied08O10b/SWSzP9 3fYQFxkZj4M8g== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: "James E . J . Bottomley" , Helge Deller , linux-parisc@vger.kernel.org Cc: Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH] parisc: remove check for minimum required GCC version Date: Mon, 27 Aug 2018 11:28:08 +0900 Message-Id: <1535336888-12183-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Commit cafa0010cd51 ("Raise the minimum required gcc version to 4.6") bumped the minimum GCC version to 4.6 for all architectures. The version check in arch/parisc/Makefile is obsolete now. Signed-off-by: Masahiro Yamada --- arch/parisc/Makefile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/arch/parisc/Makefile b/arch/parisc/Makefile index 5ce0302..d047a09 100644 --- a/arch/parisc/Makefile +++ b/arch/parisc/Makefile @@ -156,12 +156,3 @@ define archhelp @echo ' copy to $$(INSTALL_PATH)' @echo ' zinstall - Install compressed vmlinuz kernel' endef - -# we require gcc 3.3 or above to compile the kernel -archprepare: checkbin -checkbin: - @if test "$(cc-version)" -lt "0303"; then \ - echo -n "Sorry, GCC v3.3 or above is required to build " ; \ - echo "the kernel." ; \ - false ; \ - fi