diff options
| author | Nathan Chancellor <nathan@kernel.org> | 2026-05-17 13:05:09 -1000 |
|---|---|---|
| committer | Nathan Chancellor <nathan@kernel.org> | 2026-05-27 15:20:04 -0700 |
| commit | de0bf1e138fcd6efdb4ddac764eb9f3487122535 (patch) | |
| tree | 85fc27e4333d09c2b2c5ab60ecd5a10ad71fe2b6 | |
| parent | 2189cb1a80f06f9673874163a5720ae804f83f87 (diff) | |
arch/Kconfig: Remove tautological condition from AUTOFDO_CLANG
Now that the minimum supported version of LLVM for building the kernel
has been raised to 17.0.1, the clang version check in
CONFIG_AUTOFDO_CLANG can be removed because it is always true.
Reviewed-by: Rong Xu <xur@google.com>
Link: https://patch.msgid.link/20260517-bump-minimum-supported-llvm-version-to-17-v2-6-b3b8cda46bdd@kernel.org
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
| -rw-r--r-- | arch/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index 0d34bcafecaa..5d6e9f56210b 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -866,7 +866,7 @@ config ARCH_SUPPORTS_AUTOFDO_CLANG config AUTOFDO_CLANG bool "Enable Clang's AutoFDO build (EXPERIMENTAL)" depends on ARCH_SUPPORTS_AUTOFDO_CLANG - depends on CC_IS_CLANG && CLANG_VERSION >= 170000 + depends on CC_IS_CLANG help This option enables Clang’s AutoFDO build. When an AutoFDO profile is specified in variable |
