rust/src/ci/docker/disabled/dist-armv7-android/Dockerfile

69 lines
1.9 KiB
Docker
Raw Normal View History

2017-05-05 22:19:18 +02:00
FROM ubuntu:16.04
RUN apt-get update && \
apt-get install -y --no-install-recommends \
2017-05-12 20:18:34 +02:00
ca-certificates \
cmake \
curl \
file \
2017-05-05 22:19:18 +02:00
g++ \
2017-05-12 20:18:34 +02:00
git \
libssl-dev \
2017-05-05 22:19:18 +02:00
make \
2017-05-12 20:18:34 +02:00
pkg-config \
2017-05-05 22:19:18 +02:00
python2.7 \
sudo \
2017-05-12 20:18:34 +02:00
unzip \
xz-utils
2017-05-05 22:19:18 +02:00
2017-05-12 20:18:34 +02:00
# dumb-init
COPY dumb-init.sh /scripts/
RUN sh /scripts/dumb-init.sh
2017-05-05 22:19:18 +02:00
2017-05-12 20:18:34 +02:00
# ndk
COPY android-ndk.sh /scripts/
RUN . /scripts/android-ndk.sh && \
2017-05-05 22:19:18 +02:00
download_ndk android-ndk-r13b-linux-x86_64.zip && \
make_standalone_toolchain arm 9 && \
make_standalone_toolchain arm 21 && \
remove_ndk
2017-05-12 20:18:34 +02:00
RUN chmod 777 /android/ndk && \
ln -s /android/ndk/arm-21 /android/ndk/arm
# env
2017-05-05 22:19:18 +02:00
ENV PATH=$PATH:/android/ndk/arm-9/bin
ENV DEP_Z_ROOT=/android/ndk/arm-9/sysroot/usr/
ENV HOSTS=armv7-linux-androideabi
ENV RUST_CONFIGURE_ARGS \
--host=$HOSTS \
--target=$HOSTS \
--armv7-linux-androideabi-ndk=/android/ndk/arm \
--disable-rpath \
--enable-extended \
--enable-cargo-openssl-static
# We support api level 9, but api level 21 is required to build llvm. To
# overcome this problem we use a ndk with api level 21 to build llvm and then
# switch to a ndk with api level 9 to complete the build. When the linker is
# invoked there are missing symbols (like sigsetempty, not available with api
# level 9), the default linker behavior is to generate an error, to allow the
# build to finish we use --warn-unresolved-symbols. Note that the missing
# symbols does not affect std, only the compiler (llvm) and cargo (openssl).
ENV SCRIPT \
python2.7 ../x.py build src/llvm --host $HOSTS --target $HOSTS && \
(export RUSTFLAGS="\"-C link-arg=-Wl,--warn-unresolved-symbols\""; \
rm /android/ndk/arm && \
ln -s /android/ndk/arm-9 /android/ndk/arm && \
python2.7 ../x.py dist --host $HOSTS --target $HOSTS)
2017-05-12 20:18:34 +02:00
# sccache
COPY sccache.sh /scripts/
RUN sh /scripts/sccache.sh
# init
ENTRYPOINT ["/usr/bin/dumb-init", "--"]