Skip to content

Commit b175752

Browse files
Eugeniy Paltsevstephanosio
authored andcommitted
ARC: ARCv3: fix toolchain prefix for ARCv3 32bit
Both 32bit and 64bit ARCv3 have same toolchain prefix Signed-off-by: Eugeniy Paltsev <[email protected]> Signed-off-by: Eugeniy Paltsev <[email protected]>
1 parent ce283dd commit b175752

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/zephyr/target.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set(CROSS_COMPILE_TARGET_xtensa xtensa-${SOC_TOOLCHAIN_NAME}_zephyr-elf)
1414

1515
# ARC uses the same source tree for both ARCv2 & ARCv3 architectures,
1616
# while toolchain differ significantly and so their cross-compile prefixes
17-
if(CONFIG_ISA_ARCV3 AND CONFIG_64BIT)
17+
if(CONFIG_ISA_ARCV3)
1818
set(CROSS_COMPILE_TARGET_arc arc64-zephyr-elf)
1919
else()
2020
set(CROSS_COMPILE_TARGET_arc arc-zephyr-elf)

0 commit comments

Comments
 (0)