Skip to content

Commit 204e213

Browse files
committed
fill in blanks
1 parent ebc1543 commit 204e213

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/03-setup/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ several MBs in size.
3030
We'll use all the tools listed below. Where a minimum version is not specified, any recent version
3131
should work but we have listed the version we have tested.
3232

33-
- Cargo & `rustc` >= nightly-2018-07-XX (TODO enter the latest nightly date)
33+
- Cargo & `rustc` >= nightly-2018-08-02
3434

3535
- [`itmdump`] v0.2.1
3636

@@ -41,7 +41,7 @@ should work but we have listed the version we have tested.
4141
- `arm-none-eabi-gdb`. Version 7.12 or newer highly recommended. Tested versions: 7.10, 7.11,
4242
7.12 and 8.1
4343

44-
- [`cargo-binutils`]. Version 0.1.1 or newer.
44+
- [`cargo-binutils`]. Version 0.1.2 or newer.
4545

4646
[`cargo-binutils`]: https://github.com/japaric/cargo-binutils
4747

@@ -75,12 +75,12 @@ Then, install or switch to the nightly channel.
7575
$ rustup default nightly
7676
```
7777

78-
**NOTE** Make sure you have a nightly newer than `nightly-2018-07-XX`. `rustc -V` should return a
78+
**NOTE** Make sure you have a nightly newer than `nightly-2018-08-02`. `rustc -V` should return a
7979
date newer than the one shown below:
8080

8181
``` console
8282
$ rustc -V
83-
rustc 1.27.0-nightly (XXX 2018-07-XX)
83+
rustc 1.29.0-nightly (97085f9fb 2018-08-01)
8484
```
8585

8686
### `itmdump`
@@ -101,10 +101,10 @@ $ cargo install cargo-binutils --vers 0.1.1
101101

102102
$ cargo size -- --version
103103
LLVM (http://llvm.org/):
104-
LLVM version 6.0.1
105-
Optimized build.
106-
Default target: x86_64-unknown-linux-gnu
107-
Host CPU: skylake
104+
LLVM version 7.0.0svn
105+
Optimized build.
106+
Default target: x86_64-unknown-linux-gnu
107+
Host CPU: skylake
108108
```
109109

110110
### OS specific instructions

src/07-registers/optimization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ fn main() -> ! {
185185
If we look at the disassembly of this new program compiled in release mode:
186186

187187
``` console
188-
$ cargo objdump -- -d -no-show-raw-insn target/thumbv7em-none-eabihf/release/registers
188+
$ cargo objdump -- -source -no-show-raw-insn target/thumbv7em-none-eabihf/release/registers
189189
registers::main::h3fb012c2979103e9:
190190
8000188: push {r7, lr}
191191
800018a: bl #40

0 commit comments

Comments
 (0)