diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2024-03-03 17:41:34 +0100 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-03-04 18:25:31 +0000 |
commit | b6efe17137bf458a511ba5110667cad4bae7dc87 (patch) | |
tree | 6d23aab59600fae52c1b31876bd9a93fc48636c1 /src/arch/x86 | |
parent | 13e2042ff5f5c9193f77973d070d4635aacfb021 (diff) |
arch/x86/Kconfig: Deduplicate ARCH_SUPPORTS_CLANG selection
Change-Id: Iced69e0bce345748a43eb1c14bf17a683e26ba60
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/81020
Reviewed-by: Jérémy Compostella <jeremy.compostella@intel.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arch/x86/Kconfig b/src/arch/x86/Kconfig index 63f71e5127..610321f9a0 100644 --- a/src/arch/x86/Kconfig +++ b/src/arch/x86/Kconfig @@ -5,6 +5,7 @@ config ARCH_X86 select PCI select RELOCATABLE_MODULES select HAVE_ASAN_IN_RAMSTAGE + select ARCH_SUPPORTS_CLANG if ARCH_X86 @@ -33,7 +34,6 @@ config ARCH_ALL_STAGES_X86_32 select ARCH_VERSTAGE_X86_32 if !VBOOT_STARTS_BEFORE_BOOTBLOCK select ARCH_ROMSTAGE_X86_32 select ARCH_RAMSTAGE_X86_32 - select ARCH_SUPPORTS_CLANG # stage selectors for x64 @@ -64,7 +64,6 @@ config ARCH_ALL_STAGES_X86_64 select ARCH_VERSTAGE_X86_64 if !VBOOT_STARTS_BEFORE_BOOTBLOCK select ARCH_ROMSTAGE_X86_64 select ARCH_RAMSTAGE_X86_64 - select ARCH_SUPPORTS_CLANG config HAVE_EXP_X86_64_SUPPORT bool |