08f56d8c9c
The original Jessie based cross builder hasn't worked for a while. The state of the libraries is still perilous for cross-building QEMU but we can use it for building TCG tests. The debian-apt-fake.sh script can also be dropped as it is no longer used. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
14 lines
460 B
Docker
14 lines
460 B
Docker
#
|
|
# Docker powerpc cross-compiler target
|
|
#
|
|
# 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.
|
|
#
|
|
FROM qemu:debian-sid
|
|
|
|
RUN DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
apt-get install -y --no-install-recommends \
|
|
gcc-powerpc-linux-gnu \
|
|
libc6-dev-powerpc-cross || { echo "Failed to build - see debian-sid.docker notes"; exit 1; }
|