Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/lesson00/rpi-os.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,17 @@ raspi2 Raspberry Pi 2
raspi3 Raspberry Pi 3
```

Confirm you have the GNU C compiler for the arm64 architecture

```
which aarch64-linux-gnu-gcc
```

If the arm64 compiler isn't found (no response from terminal), install the compiler
```
sudo apt-get install gcc-aarch64-linux-gnu
```

Test QEMU with Rpi3 baremetal code

```
Expand Down