cc6c7365b8
As before, using Debian SID compilers. 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
337 B
Docker
13 lines
337 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-sparc64-linux-gnu \
|
|
libc6-dev-sparc64-cross
|