mirror of https://github.com/xemu-project/xemu.git
14 lines
356 B
Docker
14 lines
356 B
Docker
#
|
|
# 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 apt update && \
|
|
DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
apt install -y --no-install-recommends \
|
|
gcc-mips64-linux-gnuabi64 \
|
|
libc6-dev-mips64-cross
|