From patchwork Mon May 18 18:48:00 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 245963 List-Id: U-Boot discussion From: trini at konsulko.com (Tom Rini) Date: Mon, 18 May 2020 14:48:00 -0400 Subject: [PATCH] kconfig: show compiler version text in the top comment Message-ID: <20200518184800.8948-1-trini@konsulko.com> This is a side-port of commit 21c54b774744 ("kconfig: show compiler version text in the top comment") from Linux: "The kernel configuration phase is now tightly coupled with the compiler in use. It will be nice to show the compiler information in Kconfig." We have already had the required makefile logic for this and had not included printing the value in various user and file visible places. Cc: Masahiro Yamada Signed-off-by: Tom Rini --- Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Kconfig b/Kconfig index 55168d1a1d0a..e34c0ae7ab4e 100644 --- a/Kconfig +++ b/Kconfig @@ -5,6 +5,8 @@ # mainmenu "U-Boot $(UBOOTVERSION) Configuration" +comment "Compiler: $(CC_VERSION_TEXT)" + source "scripts/Kconfig.include" # Allow defaults in arch-specific code to override any given here