From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from foss.arm.com ([217.140.110.172]:45594 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726808AbfLPIsl (ORCPT ); Mon, 16 Dec 2019 03:48:41 -0500 From: Amit Daniel Kachhap Subject: [PATCH v3 14/16] kconfig: Add support for 'as-option' Date: Mon, 16 Dec 2019 14:17:16 +0530 Message-Id: <1576486038-9899-15-git-send-email-amit.kachhap@arm.com> In-Reply-To: <1576486038-9899-1-git-send-email-amit.kachhap@arm.com> References: <1576486038-9899-1-git-send-email-amit.kachhap@arm.com> Sender: linux-kbuild-owner@vger.kernel.org List-ID: To: linux-arm-kernel@lists.infradead.org Cc: Mark Rutland , Kees Cook , Ard Biesheuvel , Catalin Marinas , Suzuki K Poulose , Will Deacon , Ramana Radhakrishnan , Kristina Martsenko , Dave Martin , Amit Daniel Kachhap , James Morse , Vincenzo Frascino , Mark Brown , Richard Henderson , Vincenzo Frascino , Masahiro Yamada , linux-kbuild@vger.kernel.org From: Vincenzo Frascino Currently kconfig does not have a feature that allows to detect if the used assembler supports a specific compilation option. Introduce 'as-option' to serve this purpose in the context of Kconfig: config X def_bool $(as-option,...) Cc: Masahiro Yamada Cc: linux-kbuild@vger.kernel.org Signed-off-by: Vincenzo Frascino Signed-off-by: Amit Daniel Kachhap --- Changes since last version: * None. scripts/Kconfig.include | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/Kconfig.include b/scripts/Kconfig.include index d4adfbe..cc465dd 100644 --- a/scripts/Kconfig.include +++ b/scripts/Kconfig.include @@ -31,6 +31,10 @@ cc-option = $(success,$(CC) -Werror $(CLANG_FLAGS) $(1) -E -x c /dev/null -o /de # Return y if the linker supports , n otherwise ld-option = $(success,$(LD) -v $(1)) +# $(as-option,) +# Return y if the assembler supports , n otherwise +as-option = $(success, $(CC) $(CLANG_FLAGS) $(1) -E -x assembler /dev/null -o /dev/null) + # check if $(CC) and $(LD) exist $(error-if,$(failure,command -v $(CC)),compiler '$(CC)' not found) $(error-if,$(failure,command -v $(LD)),linker '$(LD)' not found) -- 2.7.4