Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| 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++-mips-linux-gnu \ | |
| libssl-dev \ | |
| pkg-config | |
| COPY scripts/sccache.sh /scripts/ | |
| RUN sh /scripts/sccache.sh | |
| ENV HOSTS=mips-unknown-linux-gnu | |
| ENV RUST_CONFIGURE_ARGS --enable-extended --disable-docs | |
| ENV SCRIPT python2.7 ../x.py dist --host $HOSTS --target $HOSTS |