Update Dockerfile ubuntu-aarch64

[ci skip] remove CC and CXX env
backport to beta https://github.com/ethcore/parity/pull/2064
This commit is contained in:
Denis S. Soldatov aka General-Beck 2016-09-23 21:34:16 +07:00 committed by GitHub
parent f5d48cbf2a
commit f560cf360c

View File

@ -23,15 +23,9 @@ RUN rustup target add aarch64-unknown-linux-gnu
# show backtraces # show backtraces
ENV RUST_BACKTRACE 1 ENV RUST_BACKTRACE 1
# set compilers
ENV CXX aarch64-linux-gnu-g++
ENV CC aarch64-linux-gnu-gcc
# show tools # show tools
RUN rustc -vV && \ RUN rustc -vV && \
cargo -V && \ cargo -V
gcc -v &&\
g++ -v
# build parity # build parity
RUN git clone https://github.com/ethcore/parity && \ RUN git clone https://github.com/ethcore/parity && \