Fix the i686-unknown-linux-musl target

This commit is contained in:
Alex Crichton 2017-02-03 10:59:40 -08:00
parent 04d2c7af0c
commit d862a3698c

View file

@ -1,8 +1,9 @@
FROM ubuntu:16.10 FROM ubuntu:16.10
RUN dpkg --add-architecture i386
RUN apt-get update RUN apt-get update
RUN apt-get install -y --no-install-recommends \ RUN apt-get install -y --no-install-recommends \
gcc make libc6-dev git curl ca-certificates gcc-multilib make libc6-dev git curl ca-certificates libc6:i386
# Below we're cross-compiling musl for i686 using the system compiler on an # Below we're cross-compiling musl for i686 using the system compiler on an
# x86_64 system. This is an awkward thing to be doing and so we have to jump # x86_64 system. This is an awkward thing to be doing and so we have to jump
# through a couple hoops to get musl to be happy. In particular: # through a couple hoops to get musl to be happy. In particular: