diff options
| author | kennytm <kennytm@gmail.com> | 2018-11-06 15:21:05 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2018-11-06 17:08:14 +0800 |
| commit | 225df14095902cde27679685fee3978fa374e1d4 (patch) | |
| tree | 5978def08b55d137256bd74ce84f641eaba4fd49 /src/ci/docker | |
| parent | 082156b2ac419dcb9e07c6a0ccb86830f2d147f7 (diff) | |
| parent | e04e5faa3fdef75c39cfbdacc6bba03e093634ea (diff) | |
| download | rust-225df14095902cde27679685fee3978fa374e1d4.tar.gz rust-225df14095902cde27679685fee3978fa374e1d4.zip | |
Rollup merge of #55644 - glaubitz:powerpcspe-linux, r=alexcrichton
ci: Add Dockerfile for dist-powerpcspe-linux This adds the Dockerfile for cross-building Rust for the powerpcspe target. It's currently disabled.
Diffstat (limited to 'src/ci/docker')
| -rw-r--r-- | src/ci/docker/disabled/dist-powerpcspe-linux/Dockerfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/ci/docker/disabled/dist-powerpcspe-linux/Dockerfile b/src/ci/docker/disabled/dist-powerpcspe-linux/Dockerfile new file mode 100644 index 00000000000..3227819dad5 --- /dev/null +++ b/src/ci/docker/disabled/dist-powerpcspe-linux/Dockerfile @@ -0,0 +1,26 @@ +FROM ubuntu:16.04 + +RUN apt-get update && apt-get install -y --no-install-recommends \ + g++ \ + make \ + file \ + curl \ + ca-certificates \ + python2.7 \ + git \ + cmake \ + sudo \ + gdb \ + xz-utils \ + g++-powerpc-linux-gnuspe \ + libssl-dev \ + pkg-config + + +COPY scripts/sccache.sh /scripts/ +RUN sh /scripts/sccache.sh + +ENV HOSTS=powerpc-unknown-linux-gnuspe + +ENV RUST_CONFIGURE_ARGS --enable-extended --disable-docs +ENV SCRIPT python2.7 ../x.py dist --host $HOSTS --target $HOSTS |
