mirror of https://gitee.com/openkylin/qemu.git
13 lines
329 B
Docker
13 lines
329 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 DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
apt-get install -y --no-install-recommends \
|
|
gcc-sh4-linux-gnu \
|
|
libc6-dev-sh4-cross
|