Update Dockerfile ubuntu-aarch64

remove CC and CXX
This commit is contained in:
Denis S. Soldatov aka General-Beck 2016-09-09 19:31:01 +07:00 committed by GitHub
parent 9caafa01d9
commit eebdc862dc
1 changed files with 1 additions and 7 deletions

View File

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