hermitrust
These scripts build a plain docker environment for RustyHermit. The toolchain is built every night with the latest nightly version of Rust.
Usage
The Docker container for rustyhermit provides an simple way to get the toolchain for RustyHermit. Please pull the container and use cargo to cross compile the application. As an example, the following commands create the test application Hello World for RustyHermit.
docker pull hermitcore/rustyhermit:latest
docker run -v $PWD:/volume -e USER=$USER --rm -t hermitcore/rustyhermit cargo new hello_world --bin
cd hello_world
docker run -v $PWD:/volume -e USER=$USER --rm -t hermitcore/rustyhermit cargo build --target x86_64-unknown-hermit