diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2026-06-25 09:06:12 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2026-06-25 09:06:12 -0700 |
| commit | 6cc37b86f80985774809aba82283fe0d564d870f (patch) | |
| tree | d630cead2441628c0ce6dfc60a5cea078f847ed9 /Documentation | |
| parent | 504c8065288befdc8a89e98858ac563deae9d7ba (diff) | |
| parent | 645323a7f4e55bb3abb0cb003b6b9dc715c8dc21 (diff) | |
| download | ath-6cc37b86f80985774809aba82283fe0d564d870f.tar.gz | |
Merge tag 'kbuild-7.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux
Pull more Kbuild updates from Nathan Chancellor:
- Link host programs with ld.lld when $(LLVM) is set to match user's
expectations that LLVM will be used exclusively during the build
process
- Fix modpost warnings from static variable name promotion that can
happen more aggressively with the recently merged distributed ThinLTO
support
- Add an optional warning for user-supplied Kconfig values that changed
after processing, such as out of range values or options that have
incorrect / missing dependencies
* tag 'kbuild-7.2-2' of git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux:
kconfig: add optional warnings for changed input values
modpost: Ignore Clang LTO suffixes in symbol matching
kbuild: Use ld.lld for linking host programs when LLVM is set
Diffstat (limited to 'Documentation')
| -rw-r--r-- | Documentation/kbuild/kconfig.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/kbuild/kconfig.rst b/Documentation/kbuild/kconfig.rst index d213c4f599a40..e35dd1d5f9d30 100644 --- a/Documentation/kbuild/kconfig.rst +++ b/Documentation/kbuild/kconfig.rst @@ -59,6 +59,11 @@ Environment variables for ``*config``: This environment variable makes Kconfig warn about all unrecognized symbols in the config input. +``KCONFIG_WARN_CHANGED_INPUT`` + If set to a non-blank value, Kconfig prints optional warnings for + user-provided values that change after Kconfig resolves dependencies + or applies other constraints such as ranges. + ``KCONFIG_WERROR`` If set, Kconfig treats warnings as errors. |
