Skip to content

Commit f8673e0

Browse files
committed
Auto merge of rust-lang#59182 - hug-dev:armv8m-base-hf, r=alexcrichton
Add dist builder for Armv8-M Baseline and HF This commit adds the Armv8-M Baseline and Armv8-M Mainline with FPU targets in the list of targets that get their dist components built. It also update the build-manifest so that this target gets also its dist components uploaded. Made possible with the recent change merged in `compiler-builtins`: rust-lang/compiler-builtins#276 A new `compiler-builtins` might be necessary for successfull compilation of the artefacts of those targets.
2 parents 0ba7d41 + e833499 commit f8673e0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/ci/docker/dist-various-1/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ ENV TARGETS=$TARGETS,thumbv6m-none-eabi
109109
ENV TARGETS=$TARGETS,thumbv7m-none-eabi
110110
ENV TARGETS=$TARGETS,thumbv7em-none-eabi
111111
ENV TARGETS=$TARGETS,thumbv7em-none-eabihf
112+
ENV TARGETS=$TARGETS,thumbv8m.base-none-eabi
112113
ENV TARGETS=$TARGETS,thumbv8m.main-none-eabi
114+
ENV TARGETS=$TARGETS,thumbv8m.main-none-eabihf
113115
ENV TARGETS=$TARGETS,riscv32imc-unknown-none-elf
114116
ENV TARGETS=$TARGETS,riscv32imac-unknown-none-elf
115117
ENV TARGETS=$TARGETS,riscv64imac-unknown-none-elf

src/tools/build-manifest/src/main.rs

+2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,9 @@ static TARGETS: &[&str] = &[
103103
"thumbv7em-none-eabi",
104104
"thumbv7em-none-eabihf",
105105
"thumbv7m-none-eabi",
106+
"thumbv8m.base-none-eabi",
106107
"thumbv8m.main-none-eabi",
108+
"thumbv8m.main-none-eabihf",
107109
"wasm32-unknown-emscripten",
108110
"wasm32-unknown-unknown",
109111
"wasm32-unknown-wasi",

0 commit comments

Comments
 (0)