8ff1c4172e
Specifically: * Update the base docker images to ubuntu 16.10 * Update musl to version 1.1.15 This is necessary since the versions we were previously using do not define CLONE_NEWCGROUP, so adding the symbol to the libc crate causes test failures.
11 lines
306 B
Docker
11 lines
306 B
Docker
FROM ubuntu:16.10
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y --no-install-recommends \
|
|
gcc libc6-dev qemu-user ca-certificates \
|
|
gcc-mips-linux-gnu libc6-dev-mips-cross \
|
|
qemu-system-mips
|
|
|
|
ENV CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_LINKER=mips-linux-gnu-gcc \
|
|
PATH=$PATH:/rust/bin
|