blob: ee6d9a24ce8238c8108e44396f3b39bf0ae96894 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# 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 apt update && \
DEBIAN_FRONTEND=noninteractive eatmydata \
apt install -y --no-install-recommends \
gcc-hppa-linux-gnu \
libc6-dev-hppa-cross
|