app/prj.conf: restore the CONFIG_CLEANUP_INTERMEDIATE_FILES=n default

Zephyr has hardcoded this to 'y' because it saves CI some disk space
when compiling hundreds of different zephyr/tests/, each in a separate
build directory. But when compiling just one "sof/app" it saves
practically no space, breaks the incremental build and can make it more
difficult to troubleshoot some build issues. So, reset it to the default
value.

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
Marc Herbert 2023-05-31 23:45:01 +00:00 committed by Kai Vehmanen
parent 231c4e36de
commit 80c6738b89
1 changed files with 8 additions and 0 deletions

View File

@ -9,6 +9,14 @@ CONFIG_BUILD_OUTPUT_BIN=n
# and usage in xtensa-build-zephyr.py
CONFIG_BUILD_OUTPUT_STRIPPED=y
# Zephyr has hardcoded this to 'y' because it saves CI some disk space
# when compiling hundreds of different zephyr/tests/, each in a separate
# build directory. But when compiling just one "sof/app" it saves
# practically no space, breaks the incremental build and can make it
# more difficult to troubleshoot some build issues. So, reset it to the
# default value.
CONFIG_CLEANUP_INTERMEDIATE_FILES=n
CONFIG_HAVE_AGENT=n
CONFIG_LOG=y