mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-09 20:57:26 +01:00
linux-ppc64le: Update QEMU user version to 2.5.0.
Also, the build needs to come before environmental variables are set for the cross-compiler.
This commit is contained in:
parent
58e30d987d
commit
ad0e9e9aa4
@ -10,6 +10,17 @@ RUN apt-get update && apt-get install -y \
|
|||||||
crossbuild-essential-ppc64el \
|
crossbuild-essential-ppc64el \
|
||||||
gfortran-powerpc64le-linux-gnu
|
gfortran-powerpc64le-linux-gnu
|
||||||
|
|
||||||
|
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.5.0.tar.bz2 | tar xj && \
|
||||||
|
cd qemu-2.5.0 && \
|
||||||
|
./configure --target-list=ppc64le-linux-user --prefix=/usr && \
|
||||||
|
make -j$(nproc) && \
|
||||||
|
make install && \
|
||||||
|
cd .. && rm -rf qemu-2.5.0
|
||||||
|
|
||||||
ENV CROSS_TRIPLE powerpc64le-linux-gnu
|
ENV CROSS_TRIPLE powerpc64le-linux-gnu
|
||||||
ENV CROSS_ROOT /usr/${CROSS_TRIPLE}
|
ENV CROSS_ROOT /usr/${CROSS_TRIPLE}
|
||||||
ENV AS=/usr/bin/${CROSS_TRIPLE}-as \
|
ENV AS=/usr/bin/${CROSS_TRIPLE}-as \
|
||||||
@ -19,17 +30,6 @@ ENV AS=/usr/bin/${CROSS_TRIPLE}-as \
|
|||||||
CXX=/usr/bin/${CROSS_TRIPLE}-g++ \
|
CXX=/usr/bin/${CROSS_TRIPLE}-g++ \
|
||||||
LD=/usr/bin/${CROSS_TRIPLE}-ld
|
LD=/usr/bin/${CROSS_TRIPLE}-ld
|
||||||
|
|
||||||
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.3.0.tar.bz2 | tar xj && \
|
|
||||||
cd qemu-2.3.0 && \
|
|
||||||
./configure --target-list=ppc64le-linux-user --prefix=/usr && \
|
|
||||||
make -j$(nproc) && \
|
|
||||||
make install && \
|
|
||||||
cd .. && rm -rf qemu-2.3.0
|
|
||||||
|
|
||||||
# Note: Toolchain file support is currently in debian Experimental according to:
|
# Note: Toolchain file support is currently in debian Experimental according to:
|
||||||
# https://wiki.debian.org/CrossToolchains#In_jessie_.28Debian_8.29
|
# https://wiki.debian.org/CrossToolchains#In_jessie_.28Debian_8.29
|
||||||
# We can switch to that when it becomes stable.
|
# We can switch to that when it becomes stable.
|
||||||
|
Loading…
Reference in New Issue
Block a user