From 071790c46e3d3f211284c8041e7fe733541debfb Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Mon, 28 Oct 2024 12:58:49 +0100 Subject: [PATCH] [nrf fromtree] linker: lto: Remove experimental label LTO support was added with Zephyr 3.6.0, and it has been used in production with Nordic devices for a long time. Remove the experimental label to mark it ready for production. Signed-off-by: Carles Cufi (cherry picked from commit 2fd8cc8d881940f1c5b1c5499cc5384fc1a93c73) (cherry picked from commit b6c23193700be7e7744bccf0c3aec159c1aaedfb) --- Kconfig.zephyr | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Kconfig.zephyr b/Kconfig.zephyr index f97819896d9..68abf89b42f 100644 --- a/Kconfig.zephyr +++ b/Kconfig.zephyr @@ -536,11 +536,10 @@ config NO_OPTIMIZATIONS endchoice config LTO - bool "Link Time Optimization [EXPERIMENTAL]" + bool "Link Time Optimization" depends on !(GEN_ISR_TABLES || GEN_IRQ_VECTOR_TABLE) || ISR_TABLES_LOCAL_DECLARATION depends on !NATIVE_LIBRARY depends on !CODE_DATA_RELOCATION - select EXPERIMENTAL help This option enables Link Time Optimization.