2017-07-18 03:31:51 +03:00
|
|
|
#
|
|
|
|
# Docker powerpc cross-compiler target
|
|
|
|
#
|
2018-05-25 00:12:15 +03:00
|
|
|
# This docker target builds on the debian sid base image which
|
|
|
|
# contains cross compilers for Debian "ports" targets. The original
|
|
|
|
# Jessie based no longer builds.
|
2017-07-18 03:31:51 +03:00
|
|
|
#
|
2018-05-25 00:12:15 +03:00
|
|
|
FROM qemu:debian-sid
|
2017-07-18 03:31:51 +03:00
|
|
|
|
|
|
|
RUN DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
|
|
apt-get install -y --no-install-recommends \
|
2018-05-25 00:12:15 +03:00
|
|
|
gcc-powerpc-linux-gnu \
|
|
|
|
libc6-dev-powerpc-cross || { echo "Failed to build - see debian-sid.docker notes"; exit 1; }
|