From patchwork Fri Jun 1 10:24:21 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 10442941 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 79135601D3 for ; Fri, 1 Jun 2018 10:24:40 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 68C4928D7A for ; Fri, 1 Jun 2018 10:24:40 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 5DBA028D8B; Fri, 1 Jun 2018 10:24:40 +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.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID 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 C31A428D7A for ; Fri, 1 Jun 2018 10:24:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750852AbeFAKYj (ORCPT ); Fri, 1 Jun 2018 06:24:39 -0400 Received: from conuserg-11.nifty.com ([210.131.2.78]:27928 "EHLO conuserg-11.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750816AbeFAKYi (ORCPT ); Fri, 1 Jun 2018 06:24:38 -0400 Received: from grover.sesame (FL1-125-199-20-195.osk.mesh.ad.jp [125.199.20.195]) (authenticated) by conuserg-11.nifty.com with ESMTP id w51AOO0X009307; Fri, 1 Jun 2018 19:24:25 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com w51AOO0X009307 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1527848665; bh=8sALPa6zxjb+dAA4LsyZTsFxa1jVV2dUg3o1SBwlh/U=; h=From:To:Cc:Subject:Date:From; b=w4uET0lBcCCG3wIdQt5IFCbzohBhOoP24/LYpzXf9sW8tsP6Eu673n0OXuLaDRojF y8pLzrdEUj/RYUUMVGFk+ig5WOj9XAPJFT0vuNKpCZEPNGuZbLx3wZO28zn0NuNdei xn+vO3zPAXtPJHExbwShuDJgKyaw1KT5/GgeYCfdwKRkq3YwDb73GTgJDdFHO5hCdf 8AJzqx+1seCEWI2jDL8T9IeYJlIWR7+1yw/oEyhyVPObcShSLLF1S722Z4/5MBO0zM Ce2yYPjZxbJ8xaUqNGZOdnJhygMSxXX8XYou209pExcqfc51xWiAQ5mnAPRP5K93x0 4bvjvFQkKOhYQ== X-Nifty-SrcIP: [125.199.20.195] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Arnd Bergmann , linux-kernel@vger.kernel.org, Masahiro Yamada Subject: [PATCH] fixup! gcc-plugins: test plugin support in Kconfig and clean up Makefile Date: Fri, 1 Jun 2018 19:24:21 +0900 Message-Id: <1527848661-31913-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Masahiro Yamada Tested-by: Arnd Bergmann --- arch/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/Kconfig b/arch/Kconfig index e5ff804..3f93769 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -405,7 +405,7 @@ preferred-plugin-hostcc := $(if-success,[ $(gcc-version) -ge 40800 ],$(HOSTCXX), config PLUGIN_HOSTCC string - default "$(shell,$(srctree)/scripts/gcc-plugin.sh $(preferred-plugin-hostcc) $(HOSTCXX) $(CC))" + default "$(shell,$(srctree)/scripts/gcc-plugin.sh "$(preferred-plugin-hostcc)" "$(HOSTCXX)" "$(CC)")" help Host compiler used to build GCC plugins. This can be $(HOSTCXX), $(HOSTCC), or a null string if GCC plugin is unsupported.