From 98bf153bb9bbf8a9704dfff6c5ca506515a33da9 Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Tue, 11 Jun 2024 23:17:48 +0000 Subject: [PATCH] library_manager: add missing "depends on CONFIG_LLEXT" Block the possibility of compiling library_manager without CONFIG_LLEXT, which obviously fails with dozens of linker errors. PS: I have no idea why library_manager depends on IPC_MAJOR_4. Kconfig is designed to express actual code dependencies, not "supported" configurations. Signed-off-by: Marc Herbert --- src/library_manager/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/library_manager/Kconfig b/src/library_manager/Kconfig index e167f956a37a..5553960a1ec5 100644 --- a/src/library_manager/Kconfig +++ b/src/library_manager/Kconfig @@ -7,6 +7,7 @@ menu "Library Manager" config LIBRARY_MANAGER bool "Library Manager Support" default n + depends on CONFIG_LLEXT depends on IPC_MAJOR_4 help This is support for dynamic modules loading.