blob: 2bbff19772a3963c8785d84a0e1d22821c4625fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# Docker cross-compiler target
#
# This docker target builds on the debian Buster base image.
#
FROM qemu/debian10
RUN apt update && \
DEBIAN_FRONTEND=noninteractive eatmydata \
apt install -y --no-install-recommends \
gcc-riscv64-linux-gnu \
libc6-dev-riscv64-cross
|