Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
redox-os
book
Commits
3dfffb9d
Commit
3dfffb9d
authored
May 14, 2020
by
David Marceau
Browse files
add a blurb about updating rust, updating xargo, and the updating redox sources cycle.
parent
aeaac622
Pipeline
#7504
failed with stage
in 11 minutes and 58 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
src/ch02-04-preparing-the-build.md
View file @
3dfffb9d
...
...
@@ -76,6 +76,49 @@ $ export PATH=${PATH}:~/.cargo/bin
```
This line can be added to your shell start-up file, like .bashrc, so that it is automatically set up for you in future.
Updating Rust
-------------
Get into the habit to update your rust nightly toolchain whenever you can to get all the goodness going into it ASAP.
```
rustup update
```
Updating Xargo
--------------
Sometimes xargo gets updated too. Please use the "--force" in order to fetch any updates for xargo to be installed.
```
cargo install xargo --force
```
Updating/Building Redox Sources Cycle
-------------------------------------
Currently, the best way to update the Redox Sources is the following:
Update repository and all submodules to latest version
```
make pull
```
Update cookbook recipe source
```
make fetch
```
Ensure a rebuild of the filesystem image occurs
```
touch filesystem.toml
```
Actually being building the default image
```
make
```
Finally run default image in QEMU
```
make qemu
```
Next steps
----------
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment