blob: ed1ce0e919d70ebe87cc7edf20e04b3f247cd5a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# Docker cross-compiler target
#
# This docker target builds on the debian sid base image which
# contains cross compilers for Debian "ports" targets.
#
FROM qemu:debian-sid
RUN DEBIAN_FRONTEND=noninteractive eatmydata \
apt-get install -y --no-install-recommends \
gcc-mips64-linux-gnuabi64 \
libc6-dev-mips64-cross
|