Skip to content

Commit 0a34e94

Browse files
authored
Rollup merge of rust-lang#47427 - EdSchouten:cloudabi-ci, r=alexcrichton
Add a Docker container for doing automated builds for CloudABI. Setting up a cross compilation toolchain for CloudABI is relatively easy. It's just a matter of installing a somewhat recent version of Clang (5.0 preferred) and installing the corresponding `${target}-cxx-runtime` package, containing a set of core C/C++ libraries (libc, libc++, libunwind, etc). Eventually it would be nice if we could also run `x.py test`. That, however still requires some more work. Both libtest and compiletest would need to be adjusted to deal with CloudABI's requirement of having all of an application's dependencies injected. Let's settle for just doing `x.py dist` for now.
2 parents a37d098 + dcf0cd0 commit 0a34e94

File tree

2 files changed

+69
-3
lines changed

2 files changed

+69
-3
lines changed

src/ci/docker/dist-various-2/Dockerfile

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:16.04
1+
FROM ubuntu:17.10
22

33
COPY scripts/cross-apt-packages.sh /scripts/
44
RUN sh /scripts/cross-apt-packages.sh
@@ -21,9 +21,12 @@ RUN apt-key adv --batch --yes --keyserver keyserver.ubuntu.com --recv-keys 74DA7
2121
RUN add-apt-repository -y 'deb http://apt.dilos.org/dilos dilos2-testing main'
2222

2323
WORKDIR /tmp
24-
COPY dist-various-2/shared.sh dist-various-2/build-fuchsia-toolchain.sh /tmp/
25-
COPY dist-various-2/build-solaris-toolchain.sh /tmp/
24+
COPY dist-various-2/shared.sh /tmp/
25+
COPY dist-various-2/build-cloudabi-toolchain.sh /tmp/
26+
RUN /tmp/build-cloudabi-toolchain.sh x86_64-unknown-cloudabi
27+
COPY dist-various-2/build-fuchsia-toolchain.sh /tmp/
2628
RUN /tmp/build-fuchsia-toolchain.sh
29+
COPY dist-various-2/build-solaris-toolchain.sh /tmp/
2730
RUN /tmp/build-solaris-toolchain.sh x86_64 amd64 solaris-i386
2831
RUN /tmp/build-solaris-toolchain.sh sparcv9 sparcv9 solaris-sparc
2932

@@ -44,12 +47,20 @@ ENV \
4447
CC_x86_64_sun_solaris=x86_64-sun-solaris2.10-gcc \
4548
CXX_x86_64_sun_solaris=x86_64-sun-solaris2.10-g++
4649

50+
# FIXME(EdSchouten): Remove this once cc ≥1.0.4 has been merged. It can
51+
# automatically pick the right compiler path.
52+
ENV \
53+
AR_x86_64_unknown_cloudabi=x86_64-unknown-cloudabi-ar \
54+
CC_x86_64_unknown_cloudabi=x86_64-unknown-cloudabi-clang \
55+
CXX_x86_64_unknown_cloudabi=x86_64-unknown-cloudabi-clang++
56+
4757
ENV TARGETS=x86_64-unknown-fuchsia
4858
ENV TARGETS=$TARGETS,aarch64-unknown-fuchsia
4959
ENV TARGETS=$TARGETS,sparcv9-sun-solaris
5060
ENV TARGETS=$TARGETS,wasm32-unknown-unknown
5161
ENV TARGETS=$TARGETS,x86_64-sun-solaris
5262
ENV TARGETS=$TARGETS,x86_64-unknown-linux-gnux32
63+
ENV TARGETS=$TARGETS,x86_64-unknown-cloudabi
5364

5465
ENV RUST_CONFIGURE_ARGS --target=$TARGETS --enable-extended
5566
ENV SCRIPT python2.7 ../x.py dist --target $TARGETS
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
#!/bin/bash
2+
# Copyright 2018 The Rust Project Developers. See the COPYRIGHT
3+
# file at the top-level directory of this distribution and at
4+
# http://rust-lang.org/COPYRIGHT.
5+
#
6+
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
7+
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
8+
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
9+
# option. This file may not be copied, modified, or distributed
10+
# except according to those terms.
11+
12+
set -eux
13+
14+
# Install prerequisites.
15+
apt-get update
16+
apt-get install -y --no-install-recommends \
17+
apt-transport-https \
18+
ca-certificates \
19+
clang-5.0 \
20+
cmake \
21+
curl \
22+
file \
23+
g++ \
24+
gdb \
25+
git \
26+
lld-5.0 \
27+
make \
28+
python \
29+
sudo \
30+
xz-utils
31+
32+
# Set up a Clang-based cross compiler toolchain.
33+
# Based on the steps described at https://nuxi.nl/cloudabi/debian/
34+
target=$1
35+
for tool in ar nm objdump ranlib size; do
36+
ln -s ../lib/llvm-5.0/bin/llvm-${tool} /usr/bin/${target}-${tool}
37+
done
38+
ln -s ../lib/llvm-5.0/bin/clang /usr/bin/${target}-cc
39+
ln -s ../lib/llvm-5.0/bin/clang /usr/bin/${target}-c++
40+
ln -s ../lib/llvm-5.0/bin/lld /usr/bin/${target}-ld
41+
ln -s ../../${target} /usr/lib/llvm-5.0/${target}
42+
43+
# FIXME(EdSchouten): Remove this once cc ≥1.0.4 has been merged. It
44+
# can make use of ${target}-cc and ${target}-c++, without incorrectly
45+
# assuming it's MSVC.
46+
ln -s ../lib/llvm-5.0/bin/clang /usr/bin/${target}-clang
47+
ln -s ../lib/llvm-5.0/bin/clang /usr/bin/${target}-clang++
48+
49+
# Install the C++ runtime libraries from CloudABI Ports.
50+
echo deb https://nuxi.nl/distfiles/cloudabi-ports/debian/ cloudabi cloudabi > \
51+
/etc/apt/sources.list.d/cloudabi.list
52+
curl 'https://pgp.mit.edu/pks/lookup?op=get&search=0x0DA51B8531344B15' | \
53+
apt-key add -
54+
apt-get update
55+
apt-get install -y $(echo ${target} | sed -e s/_/-/g)-cxx-runtime

0 commit comments

Comments
 (0)