blob: fd3af89575961396792967fbc1c125e110ec3a08 (
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-sh4-linux-gnu \
libc6-dev-sh4-cross
|