mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 00:37:35 +00:00
* [ci] add powerpc/powerpc64 build bots * unbreak stdsimd builds for targets without run-time
18 lines
499 B
Docker
18 lines
499 B
Docker
FROM ubuntu:17.10
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc \
|
|
ca-certificates \
|
|
libc6-dev \
|
|
gcc-powerpc64-linux-gnu \
|
|
libc6-dev-ppc64-cross \
|
|
qemu-user \
|
|
qemu-system-ppc \
|
|
make \
|
|
file
|
|
|
|
ENV CARGO_TARGET_POWERPC64_UNKNOWN_LINUX_GNU_LINKER=powerpc64-linux-gnu-gcc \
|
|
CARGO_TARGET_POWERPC64_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc64 -L /usr/powerpc64-linux-gnu" \
|
|
CC=powerpc64-linux-gnu-gcc \
|
|
OBJDUMP=powerpc64-linux-gnu-objdump
|