Skip to content

Commit fa59c26

Browse files
committed
Revert "scripts: template: Disable ARC targets"
This reverts commit e59c246 since the ARC targets have been re-enabled. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent dc1d92f commit fa59c26

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

scripts/template_setup_posix

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,8 @@ pushd "$(dirname "${BASH_SOURCE[0]}")"
118118
# Initialise toolchain list
119119
toolchains=(
120120
"aarch64-zephyr-elf"
121-
# FIXME: Re-enable ARC when the patches for the latest toolchains are available
122-
# "arc64-zephyr-elf"
123-
# "arc-zephyr-elf"
121+
"arc64-zephyr-elf"
122+
"arc-zephyr-elf"
124123
"arm-zephyr-eabi"
125124
"mips-zephyr-elf"
126125
"nios2-zephyr-elf"

scripts/template_setup_win

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ exit /b 0
2626
REM # Initialise toolchain list
2727
set TOOLCHAINS=
2828
set TOOLCHAINS=%TOOLCHAINS% aarch64-zephyr-elf
29-
REM # FIXME: Re-enable ARC when the patches for the latest toolchains are available
30-
REM set TOOLCHAINS=%TOOLCHAINS% arc64-zephyr-elf
31-
REM set TOOLCHAINS=%TOOLCHAINS% arc-zephyr-elf
29+
set TOOLCHAINS=%TOOLCHAINS% arc64-zephyr-elf
30+
set TOOLCHAINS=%TOOLCHAINS% arc-zephyr-elf
3231
set TOOLCHAINS=%TOOLCHAINS% arm-zephyr-eabi
3332
set TOOLCHAINS=%TOOLCHAINS% mips-zephyr-elf
3433
set TOOLCHAINS=%TOOLCHAINS% nios2-zephyr-elf

0 commit comments

Comments
 (0)