Skip to content

Commit

Permalink
Update documentation and CI to use nightly for allocation API
Browse files Browse the repository at this point in the history
  • Loading branch information
diodesign committed Dec 17, 2018
1 parent 726e710 commit 0d70057
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -5,7 +5,7 @@ dist: trusty
sudo: required sudo: required
language: rust language: rust
rust: rust:
- stable - nightly
cache: cargo cache: cargo


install: install:
Expand Down
6 changes: 3 additions & 3 deletions BUILDING.md
Expand Up @@ -7,7 +7,7 @@ or feedback to add, please submit a pull request.


To build diosix for a 32-bit RISC-V system, make sure you've cross-compiled and installed the latest RISC-V port of To build diosix for a 32-bit RISC-V system, make sure you've cross-compiled and installed the latest RISC-V port of
[GNU binutils](https://github.com/riscv/riscv-binutils-gdb) as the kernel requires this toolkit. You'll next need to [GNU binutils](https://github.com/riscv/riscv-binutils-gdb) as the kernel requires this toolkit. You'll next need to
use [rustup](https://rustup.rs/) to install the `stable` toolchain of Rust. The default target must be the build use [rustup](https://rustup.rs/) to install the `nightly` toolchain of Rust. The default target must be the build
host's architecture (likely x86_64) and you must install the `riscv32imac-unknown-none-elf` target, too. host's architecture (likely x86_64) and you must install the `riscv32imac-unknown-none-elf` target, too.
(Currently, Rust only supports 32-bit RISC-V. As soon as 64-bit support appears, I'll target that as well.) (Currently, Rust only supports 32-bit RISC-V. As soon as 64-bit support appears, I'll target that as well.)


Expand All @@ -25,8 +25,8 @@ cd riscv-binutils-gdb
./configure --prefix $HOME/cross --target=riscv32-elf ./configure --prefix $HOME/cross --target=riscv32-elf
make make
make install make install
rustup toolchain install stable rustup toolchain install nightly
rustup default stable rustup default nightly
rustup target install riscv32imac-unknown-none-elf rustup target install riscv32imac-unknown-none-elf
``` ```


Expand Down

0 comments on commit 0d70057

Please sign in to comment.