mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-06-10 21:19:26 +02:00
linux-ppc64le: Initial addition based off Debian.
This commit is contained in:
21
linux-ppc64le/Dockerfile
Normal file
21
linux-ppc64le/Dockerfile
Normal file
@ -0,0 +1,21 @@
|
||||
FROM thewtex/cross-compiler-base
|
||||
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 \
|
||||
qemu-user \
|
||||
qemu-user-static
|
||||
|
||||
WORKDIR /usr/src
|
||||
|
||||
# Note: Toolchain file support is currently in debian Experimental according to:
|
||||
# https://wiki.debian.org/CrossToolchains#In_jessie_.28Debian_8.29
|
||||
# We can switch to that when it becomes stable.
|
||||
COPY Toolchain.cmake /usr/lib/powerpc64le-linux-gnu/
|
||||
ENV CMAKE_TOOLCHAIN_FILE /usr/lib/powerpc64le-linux-gnu/Toolchain.cmake
|
Reference in New Issue
Block a user