From df02ceee7a85c9f84c940ef29e560bb15300fd0c Mon Sep 17 00:00:00 2001 From: Ray Lau Date: Mon, 10 Nov 2025 16:13:00 +0000 Subject: [PATCH] doc: Running Sonata software: Fix command for writing debug logs A backslash was missing in the multi-line xmake config command. The debug-allocator option is no longer a boolean and a value of information should be used for maximum verbosity. --- doc/guide/running-software.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guide/running-software.md b/doc/guide/running-software.md index ead152b..93e1b24 100644 --- a/doc/guide/running-software.md +++ b/doc/guide/running-software.md @@ -86,10 +86,10 @@ If you want debug logs from the RTOS, configure your build with the following ad ```sh rm -rf build .xmake -xmake config -P examples +xmake config -P examples \ --debug-scheduler=y --debug-locks=y \ --debug-cxxrt=y --debug-loader=y \ - --debug-token_library=y --debug-allocator=y + --debug-token_library=y --debug-allocator=information xmake -P examples ```