Skip to content

Commit e687205

Browse files
committed
Auto merge of #47016 - malbarbo:dist-armv5te, r=alexcrichton
Add dist builder for armv5te-unknown-linux-gnueabi (again) The dist builder was first add in #46498 and later remove in #46498 because of #46822. #46822 seems to be fixed now (I and @green-s have [tested](#46498 (comment)) it).
2 parents 1abeb43 + 606a0a5 commit e687205

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

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

+6-1
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,20 @@ ENV TARGETS=$TARGETS,mips-unknown-linux-musl
4646
ENV TARGETS=$TARGETS,mipsel-unknown-linux-musl
4747
ENV TARGETS=$TARGETS,arm-unknown-linux-musleabi
4848
ENV TARGETS=$TARGETS,arm-unknown-linux-musleabihf
49+
ENV TARGETS=$TARGETS,armv5te-unknown-linux-gnueabi
4950
ENV TARGETS=$TARGETS,armv7-unknown-linux-musleabihf
5051
ENV TARGETS=$TARGETS,aarch64-unknown-linux-musl
5152
ENV TARGETS=$TARGETS,sparc64-unknown-linux-gnu
5253
ENV TARGETS=$TARGETS,x86_64-unknown-redox
5354

55+
# FIXME: remove armv5te vars after https://github.com/alexcrichton/cc-rs/issues/271
56+
# get fixed and cc update
5457
ENV CC_mipsel_unknown_linux_musl=mipsel-openwrt-linux-gcc \
5558
CC_mips_unknown_linux_musl=mips-openwrt-linux-gcc \
5659
CC_sparc64_unknown_linux_gnu=sparc64-linux-gnu-gcc \
57-
CC_x86_64_unknown_redox=x86_64-unknown-redox-gcc
60+
CC_x86_64_unknown_redox=x86_64-unknown-redox-gcc \
61+
CC_armv5te_unknown_linux_gnueabi=arm-linux-gnueabi-gcc \
62+
CFLAGS_armv5te_unknown_linux_gnueabi="-march=armv5te -marm -mfloat-abi=soft"
5863

5964
# Suppress some warnings in the openwrt toolchains we downloaded
6065
ENV STAGING_DIR=/tmp

0 commit comments

Comments
 (0)