Skip to content

Commit 39f5acd

Browse files
committed
app: kconfig: allow FLIX generation
This sets the toolchain kconfig to allow generating FLIX instructions as it is disabled by default on Zephyr upstream. Signed-off-by: Daniel Leung <daniel.leung@intel.com>
1 parent 58ac6c9 commit 39f5acd

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

app/Kconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ config SCHED_CPU_MASK_PIN_ONLY
44
config SMP_BOOT_DELAY
55
default y if SMP
66

7+
# Allow compiler to determine whether to generate FLIX instructions.
8+
choice COMPILER_CODEGEN_VLIW
9+
default COMPILER_CODEGEN_VLIW_AUTO if "$(ZEPHYR_TOOLCHAIN_VARIANT)" = "xt-clang"
10+
endchoice
11+
712
source "Kconfig.zephyr"
813

914
if SOC_FAMILY_INTEL_ADSP

west.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ manifest:
4343

4444
- name: zephyr
4545
repo-path: zephyr
46-
revision: c1a2b3be459d4f34d31ae54774fd57e96438d237
46+
revision: 96d9db95de80ece9ae434cab1336fb5c07863cf5
4747
remote: zephyrproject
4848

4949
# Import some projects listed in zephyr/west.yml@revision

0 commit comments

Comments
 (0)