Skip to content

Commit 3fa6672

Browse files
committed
Rollup merge of rust-lang#56954 - hug-dev:armv8m-main-ci, r=alexcrichton
Add dist builder for Armv8-M Mainline This commit adds the Armv8-M Mainline target 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. I took example on other pull requests doing the same thing for another target to make the changes. Please feel free to comment if things needs to be added or removed. Doing `./x.py dist --target thumbv8m.main-none-eabi` worked locally so I assume that this will also work on the CI. It will (I think) however need a new release of alexcrichton/cc-rs to include the pull request rust-lang/cc-rs#363 @alexcrichton I hope to do the HardFloat version (`thumbv8m.main-none-eabihf`) and Baseline (`thumbv8m.base-none-eabi`) later, as fixes need to be done on compiler-builtins first to support those.
1 parent 5a118d4 commit 3fa6672

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ ENV TARGETS=$TARGETS,thumbv6m-none-eabi
103103
ENV TARGETS=$TARGETS,thumbv7m-none-eabi
104104
ENV TARGETS=$TARGETS,thumbv7em-none-eabi
105105
ENV TARGETS=$TARGETS,thumbv7em-none-eabihf
106+
ENV TARGETS=$TARGETS,thumbv8m.main-none-eabi
106107
ENV TARGETS=$TARGETS,riscv32imc-unknown-none-elf
107108
ENV TARGETS=$TARGETS,riscv32imac-unknown-none-elf
108109
ENV TARGETS=$TARGETS,armebv7r-none-eabi

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ static TARGETS: &'static [&'static str] = &[
100100
"thumbv7em-none-eabi",
101101
"thumbv7em-none-eabihf",
102102
"thumbv7m-none-eabi",
103+
"thumbv8m.main-none-eabi",
103104
"wasm32-unknown-emscripten",
104105
"wasm32-unknown-unknown",
105106
"x86_64-apple-darwin",

0 commit comments

Comments
 (0)