7d5817a426
Cross building QEMU for riscv64 still involves messing about with sid and ports. However for building tests we can have a slimmer compiler only container which should be more stable. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220225172021.3493923-7-alex.bennee@linaro.org>
13 lines
296 B
Docker
13 lines
296 B
Docker
#
|
|
# Docker cross-compiler target
|
|
#
|
|
# This docker target builds on the Debian Bullseye base image.
|
|
#
|
|
FROM qemu/debian11
|
|
|
|
RUN apt update && \
|
|
DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
apt install -y --no-install-recommends \
|
|
gcc-riscv64-linux-gnu \
|
|
libc6-dev-riscv64-cross
|