2018-04-23 18:25:06 +03:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2019-07-23 17:15:27 +03:00
|
|
|
RUN apt update && \
|
|
|
|
DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
|
|
apt install -y --no-install-recommends \
|
2018-04-23 18:25:06 +03:00
|
|
|
gcc-sh4-linux-gnu \
|
|
|
|
libc6-dev-sh4-cross
|