]>
Commit | Line | Data |
---|---|---|
a5ec3e36 AB |
1 | # |
2 | # Docker cross-compiler target | |
3 | # | |
4 | # This docker target builds on the debian sid base image which | |
5 | # contains cross compilers for Debian "ports" targets. | |
6 | # | |
7 | FROM qemu:debian-sid | |
8 | ||
9 | RUN DEBIAN_FRONTEND=noninteractive eatmydata \ | |
10 | apt-get install -y --no-install-recommends \ | |
11 | gcc-sh4-linux-gnu \ | |
12 | libc6-dev-sh4-cross |