From 662b9803fa9985f499d3627f96589a1ed8d2c8dc Mon Sep 17 00:00:00 2001 From: Mathieu Choplain Date: Fri, 5 Jul 2024 08:51:39 +0200 Subject: [PATCH] llext: disable verbose for SLID generation scripts This commit removes the "-vvv" argument from the SLID generation scripts' command line when building Zephyr or an extension with Kconfig CONFIG_LLEXT_EXPORT_BUILTINS_BY_SLID enabled. This removes a lot of noise in the build log (usually ~250 lines) and is fine to do because the printed information is also saved in build artifacts. Signed-off-by: Mathieu Choplain --- CMakeLists.txt | 1 - cmake/modules/extensions.cmake | 1 - 2 files changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7c199a6caa7..c13397cae7d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1898,7 +1898,6 @@ if (CONFIG_LLEXT AND CONFIG_LLEXT_EXPORT_BUILTINS_BY_SLID) ${ZEPHYR_BASE}/scripts/build/llext_prepare_exptab.py --elf-file ${PROJECT_BINARY_DIR}/${KERNEL_ELF_NAME} --slid-listing ${PROJECT_BINARY_DIR}/slid_listing.txt - -vvv ) endif() diff --git a/cmake/modules/extensions.cmake b/cmake/modules/extensions.cmake index d8ad572f44d..d91295325cd 100644 --- a/cmake/modules/extensions.cmake +++ b/cmake/modules/extensions.cmake @@ -5444,7 +5444,6 @@ function(add_llext_target target_name) ${PYTHON_EXECUTABLE} ${ZEPHYR_BASE}/scripts/build/llext_inject_slids.py --elf-file ${llext_pkg_output} - -vvv ) else() set(slid_inject_cmd ${CMAKE_COMMAND} -E true)