+0
−2
+2
−0
+17
−0
Loading
mainline inclusion from mainline-v5.8-rc1 commit 8b59cd81 category: feature bugzilla: https://gitee.com/openeuler/kernel/issues/I8J6X4 CVE: NA Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=8b59cd81dc5e724eaea283fa6006985891c7bff4 -------------------------------- Commit 21c54b77 ("kconfig: show compiler version text in the top comment") added the environment variable, CC_VERSION_TEXT in the comment of the top Kconfig file. It can detect the compiler update, and invoke the syncconfig because all environment variables referenced in Kconfig files are recorded in include/config/auto.conf.cmd This commit makes it a CONFIG option in order to ensure the full rebuild when the compiler is updated. This works like follows: include/config/kconfig.h contains "CONFIG_CC_VERSION_TEXT" in the comment block. The top Makefile specifies "-include $(srctree)/include/linux/kconfig.h" t...