aboutsummaryrefslogtreecommitdiff
path: root/tests/docker/dockerfiles/debian-s390x-cross.docker
blob: cfc354ce5d6f6dd5ea3b68382c3d8135d2fcee57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# Docker s390 cross-compiler target
#
# This docker target is based on stretch (testing) as the stable build
# doesn't have the cross compiler available.
#
FROM debian:testing-slim

# Duplicate deb line as deb-src
RUN cat /etc/apt/sources.list | sed "s/deb/deb-src/" >> /etc/apt/sources.list

# Add the s390x architecture
RUN dpkg --add-architecture s390x

# Grab the updated list of packages
RUN apt update && apt dist-upgrade -yy
RUN apt install -yy build-essential clang
RUN apt-get build-dep -yy -a s390x qemu || apt-get -f install
RUN apt install -yy gcc-multilib-s390x-linux-gnu binutils-multiarch

# Specify the cross prefix for this image (see tests/docker/common.rc)
ENV QEMU_CONFIGURE_OPTS --cross-prefix=s390x-linux-gnu-

RUN DEBIAN_FRONTEND=noninteractive \
    apt-get install -y --no-install-recommends \
        glusterfs-common:s390x \
        libbz2-dev:s390x \
        liblzo2-dev:s390x \
        libncursesw5-dev:s390x \
        libnfs-dev:s390x \
        librdmacm-dev:s390x \
        libsnappy-dev:s390x