Fix linux-mipsel

This commit is contained in:
Bensuperpc 2021-05-08 13:22:40 +02:00
parent f9693294ff
commit 8c18e4a7f1

View File

@ -5,16 +5,13 @@ MAINTAINER Sergi Alvarez "pancake@nopcode.org"
# VFP instructions (mipshf). # VFP instructions (mipshf).
# From https://wiki.debian.org/CrossToolchains, installing for stretch # From https://wiki.debian.org/CrossToolchains, installing for stretch
RUN echo "deb http://emdebian.org/tools/debian/ stretch main" > /etc/apt/sources.list.d/emdebian.list \ RUN apt-get update && apt-get install -y crossbuild-essential-mipsel
&& curl http://emdebian.org/tools/debian/emdebian-toolchain-archive.key | apt-key add - \
&& sed -i 's/httpredir.debian.org/http.debian.net/' /etc/apt/sources.list \
&& dpkg --add-architecture mipsel \
&& apt-get update && apt-get install -y crossbuild-essential-mipsel
# The cross-compiling emulator # The cross-compiling emulator
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
qemu-user \ qemu-user \
qemu-user-static qemu-user-static \
&& apt-get clean --yes
ENV CROSS_TRIPLE mipsel-linux-gnu ENV CROSS_TRIPLE mipsel-linux-gnu
ENV CROSS_ROOT /usr/bin ENV CROSS_ROOT /usr/bin