rust-cross / rust-musl-cross

Docker images for compiling static Rust binaries using musl-cross
MIT License
620 stars 68 forks source link

Add armv5te-unknown-linux-musleabi target to arm-unknown-linux-musleabi #20

Closed jabdoa2 closed 5 years ago

jabdoa2 commented 5 years ago

Would it be possible to add the rust target armv5te-unknown-linux-musleabi to the arm-unknown-linux-musleabi image? It works fine if I add it manually. Would be nice if you could add it by default.

jabdoa2 commented 5 years ago

In the meantime I use this Dockerfile:

FROM messense/rust-musl-cross:arm-musleabi
RUN rustup target add armv5te-unknown-linux-musleabi

Would be cool to include it nevertheless.