Skip to content

Commit a062c30

Browse files
committed
Re-enable MIPS build
Signed-off-by: Kumar Gala <[email protected]>
1 parent 3aade99 commit a062c30

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-5
lines changed

.buildkite/pipeline-template.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ steps:
1919
12) TARGET="xtensa_nxp_imx_adsp";;
2020
13) TARGET="xtensa_nxp_imx8m_adsp";;
2121
14) TARGET="xtensa_intel_s1000";;
22-
15) TARGET="cmake";;
22+
15) TARGET="mips";;
23+
16) TARGET="cmake";;
2324
esac
2425
- ./go.sh $${TARGET}
2526
- >
@@ -42,7 +43,7 @@ steps:
4243
cd ../..
4344
buildkite-agent artifact upload $${TARGET}.$MACHINE.tar.bz2;
4445
fi
45-
parallelism: 16
46+
parallelism: 17
4647
env:
4748
BUILDKITE_CLEAN_CHECKOUT: "true"
4849
retry:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Currently we build the following toolchains:
1515
- arm64
1616
- riscv64
1717
- sparc
18+
- mips
1819
- xtensa (sample_controller, intel_apl_adsp, intel_s1000, intel_bdw_adsp,
1920
intel_byt_adsp, nxp_imx_adsp, nxp_imx8m_adsp)
2021

cmake/zephyr/target.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ else()
77
endif()
88
set(CROSS_COMPILE_TARGET_nios2 nios2-zephyr-elf)
99
set(CROSS_COMPILE_TARGET_riscv riscv64-zephyr-elf)
10-
set(CROSS_COMPILE_TARGET_mips mipsel-zephyr-elf)
10+
set(CROSS_COMPILE_TARGET_mips mips-zephyr-elf)
1111
set(CROSS_COMPILE_TARGET_xtensa xtensa-zephyr-elf)
1212
set(CROSS_COMPILE_TARGET_arc arc-zephyr-elf)
1313
set(CROSS_COMPILE_TARGET_x86 x86_64-zephyr-elf)

configs/mips.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CT_CONFIG_VERSION="2"
1+
CT_CONFIG_VERSION="3"
22
CT_EXPERIMENTAL=y
33
CT_LOCAL_TARBALLS_DIR="${CT_PREFIX:-${HOME}/x-tools}/sources"
44
# CT_PREFIX_DIR_RO is not set

release-notes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Notes / Changes in various releases
22

3+
## Zephyr SDK 0.12.1
4+
5+
- General:
6+
* Re-enable MIPS toolchain target
7+
* Fix version number in cmake/zephyr/Kconfig
8+
39
## Zephyr SDK 0.12.0
410

511
- General:

scripts/make_zephyr_sdk.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fi
2121
root_dir=$(dirname $0)/..
2222
sdk_version=$(cat $root_dir/VERSION)
2323
machine=$1
24-
arch_list="arm arm64 arc nios2 riscv64 sparc x86_64 xtensa_sample_controller \
24+
arch_list="arm arm64 arc nios2 riscv64 sparc mips x86_64 xtensa_sample_controller \
2525
xtensa_intel_apl_adsp xtensa_intel_s1000 xtensa_intel_bdw_adsp \
2626
xtensa_intel_byt_adsp xtensa_nxp_imx_adsp xtensa_nxp_imx8m_adsp"
2727

@@ -195,6 +195,7 @@ parse_toolchain_name file_gcc_arc arc
195195
parse_toolchain_name file_gcc_nios2 nios2
196196
parse_toolchain_name file_gcc_riscv64 riscv64
197197
parse_toolchain_name file_gcc_sparc sparc
198+
parse_toolchain_name file_gcc_mips mips
198199
parse_toolchain_name file_gcc_x86_64 x86_64-zephyr-elf
199200
parse_toolchain_name file_gcc_xtensa_sample_controller xtensa_sample_controller
200201
parse_toolchain_name file_gcc_xtensa_intel_apl_adsp xtensa_intel_apl_adsp

0 commit comments

Comments
 (0)