Skip to content

Commit dd8b932

Browse files
marc-hbkv2019i
authored andcommitted
app/prj.conf: stop forcing CONFIG_OUTPUT_DISASSEMBLY=y
This reverts 8f60180 ("app: enable OUTPUT_DISASSEMBLY for Zephyr builds") The disassembly is useful in some contexts but can't be parallelized and takes an enormous amount of time. On my system OUTPUT_DISASSEMBLY almost doubles the compilation time! Quoting Zephyr commit cc5763344709: > This on-by-default option takes the majority of "link" time. If people > need the disassembly, they can turn it on. Signed-off-by: Marc Herbert <[email protected]>
1 parent 478e0b0 commit dd8b932

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

app/prj.conf

-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ CONFIG_BUILD_OUTPUT_BIN=n
99
# and usage in xtensa-build-zephyr.py
1010
CONFIG_BUILD_OUTPUT_STRIPPED=y
1111

12-
# Generate zephyr.lst file
13-
CONFIG_OUTPUT_DISASSEMBLY=y
14-
1512
CONFIG_HAVE_AGENT=n
1613

1714
# Since Zephyr commit f0daf904bb0202c PICOLIBC is the new default.

scripts/xtensa-build-zephyr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ class InstFile:
943943
InstFile("include/generated/sof_versions.h", "sof_versions.h",
944944
gzip=False, txt=True),
945945
InstFile(BIN_NAME + ".elf"),
946-
InstFile(BIN_NAME + ".lst", txt=True),
946+
InstFile(BIN_NAME + ".lst", txt=True, optional=True),
947947
InstFile(BIN_NAME + ".map", txt=True),
948948

949949
# CONFIG_BUILD_OUTPUT_STRIPPED

0 commit comments

Comments
 (0)