File tree Expand file tree Collapse file tree 18 files changed +65
-65
lines changed
library/compiler-builtins/ci/docker
aarch64-unknown-linux-gnu
arm-unknown-linux-gnueabihf
arm-unknown-linux-gnueabi
armv7-unknown-linux-gnueabihf
mips64-unknown-linux-gnuabi64
mips64el-unknown-linux-gnuabi64
powerpc-unknown-linux-gnu
powerpc64-unknown-linux-gnu
powerpc64le-unknown-linux-gnu Expand file tree Collapse file tree 18 files changed +65
-65
lines changed Original file line number Diff line number Diff line change 11FROM ubuntu:16.04
2- RUN apt-get update
3- RUN apt-get install -y --no-install-recommends \
4- gcc libc6-dev ca-certificates \
5- gcc-aarch64-linux-gnu libc6-dev-arm64-cross \
6- qemu-user-static
2+ RUN apt-get update && \
3+ apt-get install -y --no-install-recommends \
4+ gcc libc6-dev ca-certificates \
5+ gcc-aarch64-linux-gnu libc6-dev-arm64-cross \
6+ qemu-user-static
77ENV CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc \
88 QEMU_LD_PREFIX=/usr/aarch64-linux-gnu \
99 RUST_TEST_THREADS=1
Original file line number Diff line number Diff line change 11FROM ubuntu:16.04
2- RUN apt-get update
3- RUN apt-get install -y --no-install-recommends \
4- gcc libc6-dev ca-certificates \
5- gcc-arm-linux-gnueabi libc6-dev-armel-cross qemu-user-static
2+ RUN apt-get update && \
3+ apt-get install -y --no-install-recommends \
4+ gcc libc6-dev ca-certificates \
5+ gcc-arm-linux-gnueabi libc6-dev-armel-cross qemu-user-static
66ENV CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABI_LINKER=arm-linux-gnueabi-gcc \
77 QEMU_LD_PREFIX=/usr/arm-linux-gnueabi \
88 RUST_TEST_THREADS=1
Original file line number Diff line number Diff line change 11FROM ubuntu:16.04
2- RUN apt-get update
3- RUN apt-get install -y --no-install-recommends \
4- gcc libc6-dev ca-certificates \
5- gcc-arm-linux-gnueabihf libc6-dev-armhf-cross qemu-user-static
2+ RUN apt-get update && \
3+ apt-get install -y --no-install-recommends \
4+ gcc libc6-dev ca-certificates \
5+ gcc-arm-linux-gnueabihf libc6-dev-armhf-cross qemu-user-static
66ENV CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABIHF_LINKER=arm-linux-gnueabihf-gcc \
77 QEMU_LD_PREFIX=/usr/arm-linux-gnueabihf \
88 RUST_TEST_THREADS=1
Original file line number Diff line number Diff line change 11FROM ubuntu:16.04
2- RUN apt-get update
3- RUN apt-get install -y --no-install-recommends \
4- gcc libc6-dev ca-certificates \
5- gcc-arm-linux-gnueabihf libc6-dev-armhf-cross qemu-user-static
2+ RUN apt-get update && \
3+ apt-get install -y --no-install-recommends \
4+ gcc libc6-dev ca-certificates \
5+ gcc-arm-linux-gnueabihf libc6-dev-armhf-cross qemu-user-static
66ENV CARGO_TARGET_ARMV7_UNKNOWN_LINUX_GNUEABIHF_LINKER=arm-linux-gnueabihf-gcc \
77 QEMU_LD_PREFIX=/usr/arm-linux-gnueabihf \
88 RUST_TEST_THREADS=1
Original file line number Diff line number Diff line change 11FROM ubuntu:16.04
2- RUN apt-get update
3- RUN apt-get install -y --no-install-recommends \
4- gcc-multilib libc6-dev ca-certificates
2+ RUN apt-get update && \
3+ apt-get install -y --no-install-recommends \
4+ gcc-multilib libc6-dev ca-certificates
Original file line number Diff line number Diff line change 11FROM ubuntu:16.04
2- RUN apt-get update
3- RUN apt-get install -y --no-install-recommends \
4- gcc-multilib libc6-dev ca-certificates
2+ RUN apt-get update && \
3+ apt-get install -y --no-install-recommends \
4+ gcc-multilib libc6-dev ca-certificates
Original file line number Diff line number Diff line change 11FROM ubuntu:16.04
22
3- RUN apt-get update
4- RUN apt-get install -y --no-install-recommends \
5- gcc libc6-dev ca-certificates \
6- gcc-mips-linux-gnu libc6-dev-mips-cross \
7- binfmt-support qemu-user-static qemu-system-mips
3+ RUN apt-get update && \
4+ apt-get install -y --no-install-recommends \
5+ gcc libc6-dev ca-certificates \
6+ gcc-mips-linux-gnu libc6-dev-mips-cross \
7+ binfmt-support qemu-user-static qemu-system-mips
88
99ENV CARGO_TARGET_MIPS_UNKNOWN_LINUX_GNU_LINKER=mips-linux-gnu-gcc \
1010 QEMU_LD_PREFIX=/usr/mips-linux-gnu \
Original file line number Diff line number Diff line change 11FROM ubuntu:16.04
2- RUN apt-get update
3- RUN apt-get install -y --no-install-recommends \
2+ RUN apt-get update && \
3+ apt-get install -y --no-install-recommends \
44 ca-certificates \
55 gcc \
66 gcc-mips64-linux-gnuabi64 \
77 libc6-dev \
88 libc6-dev-mips64-cross \
9- qemu-user-static
10- RUN apt-get install -y --no-install-recommends qemu-system-mips
9+ qemu-user-static \
10+ apt-get install -y --no-install-recommends qemu-system-mips
1111ENV CARGO_TARGET_MIPS64_UNKNOWN_LINUX_GNUABI64_LINKER=mips64-linux-gnuabi64-gcc \
1212 CC_mips64_unknown_linux_gnuabi64=mips64-linux-gnuabi64-gcc \
1313 QEMU_LD_PREFIX=/usr/mips64-linux-gnuabi64 \
Original file line number Diff line number Diff line change 11FROM ubuntu:16.04
2- RUN apt-get update
3- RUN apt-get install -y --no-install-recommends \
2+ RUN apt-get update && \
3+ apt-get install -y --no-install-recommends \
44 ca-certificates \
55 gcc \
66 gcc-mips64el-linux-gnuabi64 \
Original file line number Diff line number Diff line change 11FROM ubuntu:16.04
22
3- RUN apt-get update
4- RUN apt-get install -y --no-install-recommends \
5- gcc libc6-dev ca-certificates \
6- gcc-mipsel-linux-gnu libc6-dev-mipsel-cross \
7- binfmt-support qemu-user-static
3+ RUN apt-get update && \
4+ apt-get install -y --no-install-recommends \
5+ gcc libc6-dev ca-certificates \
6+ gcc-mipsel-linux-gnu libc6-dev-mipsel-cross \
7+ binfmt-support qemu-user-static
88
99ENV CARGO_TARGET_MIPSEL_UNKNOWN_LINUX_GNU_LINKER=mipsel-linux-gnu-gcc \
1010 QEMU_LD_PREFIX=/usr/mipsel-linux-gnu \
You can’t perform that action at this time.
0 commit comments