[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1518806331-7101-10-git-send-email-yamada.masahiro@socionext.com>
Date: Sat, 17 Feb 2018 03:38:37 +0900
From: Masahiro Yamada <yamada.masahiro@...ionext.com>
To: linux-kbuild@...r.kernel.org,
Linus Torvalds <torvalds@...ux-foundation.org>
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Arnd Bergmann <arnd@...db.de>,
Kees Cook <keescook@...omium.org>,
Randy Dunlap <rdunlap@...radead.org>,
Ulf Magnusson <ulfalizer@...il.com>,
Sam Ravnborg <sam@...nborg.org>,
Michal Marek <michal.lkml@...kovi.net>,
Masahiro Yamada <yamada.masahiro@...ionext.com>,
linux-kernel@...r.kernel.org
Subject: [PATCH 09/23] kconfig: add 'cc-option' macro
This will be the most frequently used macro. It evaluates to 'y' if
the given argument is supported by the compiler, or 'n' otherwise.
Signed-off-by: Masahiro Yamada <yamada.masahiro@...ionext.com>
---
init/Kconfig | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/init/Kconfig b/init/Kconfig
index b4814e6..f026a62 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -8,6 +8,10 @@ config DEFCONFIG_LIST
default ARCH_DEFCONFIG
default "arch/$ARCH/defconfig"
+config cc-option
+ string
+ macro $(shell $CC -Werror $(1) -c -x c /dev/null -o /dev/null)
+
config CONSTRUCTORS
bool
depends on !UML
--
2.7.4
Powered by blists - more mailing lists