From c5ced5c8d262dd89bfa0b251a502d4eae29e9a11 Mon Sep 17 00:00:00 2001 From: Curtis Malainey Date: Mon, 25 Sep 2023 15:02:20 -0700 Subject: [PATCH 1/2] app: conf: fix config remove errnous -D Signed-off-by: Curtis Malainey --- app/stub_build_all_ipc4.conf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/stub_build_all_ipc4.conf b/app/stub_build_all_ipc4.conf index f111940b17b6..178b70388c01 100644 --- a/app/stub_build_all_ipc4.conf +++ b/app/stub_build_all_ipc4.conf @@ -1,5 +1,5 @@ --DCONFIG_COMP_STUBS=y --DCONFIG_COMP_ARIA=y --DCONFIG_COMP_CHAIN_DMA=y --DCONFIG_COMP_UP_DOWN_MIXER=y --DCONFIG_IPC_MAJOR_4=y +CONFIG_COMP_STUBS=y +CONFIG_COMP_ARIA=y +CONFIG_COMP_CHAIN_DMA=y +CONFIG_COMP_UP_DOWN_MIXER=y +CONFIG_IPC_MAJOR_4=y From b3b02a0421a8d6f140bf6d1612569dc2a4c62ed3 Mon Sep 17 00:00:00 2001 From: Curtis Malainey Date: Mon, 25 Sep 2023 15:02:41 -0700 Subject: [PATCH 2/2] scripts: fuzz: fix argument passing remove quotes so params are unquoted and actually parsed by cmake Signed-off-by: Curtis Malainey --- scripts/fuzz.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fuzz.sh b/scripts/fuzz.sh index d999beeb476a..fb3a4c9440fb 100755 --- a/scripts/fuzz.sh +++ b/scripts/fuzz.sh @@ -85,7 +85,7 @@ main() fi west build -d build-fuzz -b native_posix "$SOF_TOP"/app/ -- \ - "${fuzz_configs[@]}" "$overlay_config" "$@" + "${fuzz_configs[@]}" $overlay_config "$@" if [ $BUILD_ONLY -eq 1 ]; then exit