mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-09 20:57:26 +01:00
68b4549a50
This will simply the removal of deprecated "org.label-schema" annotation [1] and the introduction of open containers ones [2] [1] http://label-schema.org/rc1/ [2] https://github.com/opencontainers/image-spec/blob/master/annotations.md
38 lines
1.1 KiB
Docker
38 lines
1.1 KiB
Docker
FROM dockcross/base:latest
|
|
|
|
# This is for 64-bit S390X Linux machine
|
|
|
|
#include "common.crosstool"
|
|
|
|
# The cross-compiling emulator
|
|
RUN apt-get update \
|
|
&& apt-get install -y \
|
|
qemu-user \
|
|
qemu-user-static \
|
|
&& apt-get clean --yes
|
|
|
|
# The CROSS_TRIPLE is a configured alias of the "s390x-ibm-linux-gnu" target.
|
|
ENV CROSS_TRIPLE s390x-ibm-linux-gnu
|
|
|
|
ENV CROSS_ROOT ${XCC_PREFIX}/${CROSS_TRIPLE}
|
|
ENV AS=${CROSS_ROOT}/bin/${CROSS_TRIPLE}-as \
|
|
AR=${CROSS_ROOT}/bin/${CROSS_TRIPLE}-ar \
|
|
CC=${CROSS_ROOT}/bin/${CROSS_TRIPLE}-gcc \
|
|
CPP=${CROSS_ROOT}/bin/${CROSS_TRIPLE}-cpp \
|
|
CXX=${CROSS_ROOT}/bin/${CROSS_TRIPLE}-g++ \
|
|
LD=${CROSS_ROOT}/bin/${CROSS_TRIPLE}-ld \
|
|
FC=${CROSS_ROOT}/bin/${CROSS_TRIPLE}-gfortran
|
|
|
|
ENV QEMU_LD_PREFIX "${CROSS_ROOT}/${CROSS_TRIPLE}/sysroot"
|
|
ENV QEMU_SET_ENV "LD_LIBRARY_PATH=${CROSS_ROOT}/lib:${QEMU_LD_PREFIX}"
|
|
|
|
COPY Toolchain.cmake ${CROSS_ROOT}/
|
|
ENV CMAKE_TOOLCHAIN_FILE ${CROSS_ROOT}/Toolchain.cmake
|
|
|
|
# Linux kernel cross compilation variables
|
|
ENV PATH ${PATH}:${CROSS_ROOT}/bin
|
|
ENV CROSS_COMPILE ${CROSS_TRIPLE}-
|
|
ENV ARCH s390
|
|
|
|
#include "common.label-and-env"
|