redox/setup.sh
2016-10-31 13:03:45 -06:00

19 lines
425 B
Bash
Executable File

#!/bin/bash
set -e
echo "Defaulting to nightly"
rustup default nightly
echo "Downloading rust source"
rustup component add rust-src
echo "Installing xargo"
cargo install -f xargo
echo "Building libstd"
./cook.sh libstd unfetch
./cook.sh libstd fetch
./cook.sh libstd build
cp recipes/libstd/build/target/x86_64-unknown-redox/debug/deps/*.rlib ~/.xargo/lib/rustlib/x86_64-unknown-redox/lib/
echo "cook.sh is ready to use"