mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-09 20:57:26 +01:00
0848dfc264
Set the ARCH, CROSS_COMPILE and PATH variables to support Linux kernel cross compilation. ARCH is set according to: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/arch?h=v5.2.2 PATH is set to include the cross toolchain path, which is used by the kernel Makefile. CROSS_COMPILE is the CROSS_TRIPLE with a dash appended, as the kernel Makefile uses it to invoke the toolchain utils. To build the kernel, depending on the config, libssl-dev and libelf-dev are required. Those are not dealt in this commit as they are not correlated to the environment variables. Validated by build the kernel using default kernel config when possible, otherwise randomly select a defconfig. <arch> - <defconfig> arm64 - defconfig armv5 and armv5-musl - colibri_pxa270_defconfig armv6 - bcm2835_defconfig armv7 and armv7a- tegra_defconfig *x86 - i386_defconfig mips and mipsel - ath79_defconfig ppc64le - wii_defconfig s390x - defconfig x64 - x86_64_defconfig * x86 dockcross toolchain does not provide "ld" and compilation fails. fix #160
61 lines
1.9 KiB
Docker
61 lines
1.9 KiB
Docker
FROM dockcross/base:latest
|
|
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
|
|
|
# Add the cross compiler sources
|
|
RUN echo "deb http://emdebian.org/tools/debian/ jessie main" >> /etc/apt/sources.list && \
|
|
dpkg --add-architecture ppc64el && \
|
|
curl http://emdebian.org/tools/debian/emdebian-toolchain-archive.key | apt-key add -
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
crossbuild-essential-ppc64el \
|
|
gfortran-powerpc64le-linux-gnu \
|
|
libbz2-dev:ppc64el \
|
|
libexpat1-dev:ppc64el \
|
|
ncurses-dev:ppc64el \
|
|
libssl-dev:ppc64el
|
|
|
|
WORKDIR /usr/src
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
|
curl -L http://wiki.qemu-project.org/download/qemu-2.6.0.tar.bz2 | tar xj && \
|
|
cd qemu-2.6.0 && \
|
|
./configure --target-list=ppc64le-linux-user --prefix=/usr && \
|
|
make -j$(nproc) && \
|
|
make install && \
|
|
cd .. && rm -rf qemu-2.6.0
|
|
|
|
ENV CROSS_TRIPLE powerpc64le-linux-gnu
|
|
ENV CROSS_ROOT /usr/${CROSS_TRIPLE}
|
|
ENV AS=/usr/bin/${CROSS_TRIPLE}-as \
|
|
AR=/usr/bin/${CROSS_TRIPLE}-ar \
|
|
CC=/usr/bin/${CROSS_TRIPLE}-gcc \
|
|
CPP=/usr/bin/${CROSS_TRIPLE}-cpp \
|
|
CXX=/usr/bin/${CROSS_TRIPLE}-g++ \
|
|
LD=/usr/bin/${CROSS_TRIPLE}-ld \
|
|
FC=/usr/bin/${CROSS_TRIPLE}-gfortran
|
|
|
|
WORKDIR /work
|
|
|
|
COPY Toolchain.cmake /usr/lib/${CROSS_TRIPLE}/
|
|
ENV CMAKE_TOOLCHAIN_FILE /usr/lib/${CROSS_TRIPLE}/Toolchain.cmake
|
|
|
|
# Linux kernel cross compilation variables
|
|
ENV PATH ${PATH}:${CROSS_ROOT}/bin
|
|
ENV CROSS_COMPILE ${CROSS_TRIPLE}-
|
|
ENV ARCH powerpc
|
|
|
|
# Build-time metadata as defined at http://label-schema.org
|
|
ARG BUILD_DATE
|
|
ARG IMAGE=dockcross/linux-ppc64le
|
|
ARG VERSION=latest
|
|
ARG VCS_REF
|
|
ARG VCS_URL
|
|
LABEL org.label-schema.build-date=$BUILD_DATE \
|
|
org.label-schema.name=$IMAGE \
|
|
org.label-schema.version=$VERSION \
|
|
org.label-schema.vcs-ref=$VCS_REF \
|
|
org.label-schema.vcs-url=$VCS_URL \
|
|
org.label-schema.schema-version="1.0"
|
|
ENV DEFAULT_DOCKCROSS_IMAGE ${IMAGE}:${VERSION}
|