From ee64b7113eb35e716f1661f5101701f9729d3e34 Mon Sep 17 00:00:00 2001 From: Adrian Calinescu Date: Sun, 25 Mar 2018 15:03:53 +0300 Subject: [PATCH] Added ARM hard float target (Raspberry Pi) --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 43bf2b6..10ee00e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,8 @@ ENV PATH=/home/rust/.cargo/bin:/usr/local/musl/bin:/usr/local/sbin:/usr/local/bi # manually. RUN curl https://sh.rustup.rs -sSf | \ sh -s -- -y --default-toolchain $TOOLCHAIN && \ - rustup target add x86_64-unknown-linux-musl + rustup target add x86_64-unknown-linux-musl && \ + rustup target add armv7-unknown-linux-gnueabihf ADD cargo-config.toml /home/rust/.cargo/config # Set up a `git credentials` helper for using GH_USER and GH_TOKEN to access