2016-09-30 07:50:04 +08:00
|
|
|
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
|
|
ca-certificates curl gcc gcc-arm-none-eabi libc6-dev libcurl4-openssl-dev libssh2-1 libnewlib-dev
|
2016-10-01 09:20:15 +08:00
|
|
|
RUN curl -sf "https://raw.githubusercontent.com/japaric/rust-everywhere/master/install.sh" | \
|
2016-10-07 12:20:09 +08:00
|
|
|
bash -s -- --at /usr/bin --from japaric/xargo --for x86_64-unknown-linux-gnu --tag v0.1.13
|
2016-09-30 07:50:04 +08:00
|
|
|
ENV AR_thumbv7em_none_eabi=arm-none-eabi-ar \
|
|
|
|
CARGO_TARGET_THUMBV7EM_NONE_EABI_LINKER=arm-none-eabi-gcc \
|
|
|
|
CC_thumbv7em_none_eabi=arm-none-eabi-gcc \
|