3ae8a1000b
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>
13 lines
331 B
Docker
13 lines
331 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-hppa-linux-gnu \
|
|
libc6-dev-hppa-cross
|