Fix for rust-lang/rust issue #50583

This commit is contained in:
Piers Finlayson 2018-12-10 19:55:38 +00:00
parent 89faefe20b
commit a01c32d6c8
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
RUN curl --retry 5 https://www.musl-libc.org/releases/musl-1.1.19.tar.gz | tar xzf -
WORKDIR /musl-1.1.19
RUN CC=arm-linux-gnueabihf-gcc \
CFLAGS="-march=armv6 -marm" \
CFLAGS="-march=armv6 -marm -mfpu=vfp" \
./configure --prefix=/musl-arm --enable-wrapper=yes
RUN make install -j4