Skip to content

Commit 3f13ab0

Browse files
committed
added gcc installation instructions for Ubuntu 18.04; 16.04 directions do not seem to work for 18.04
1 parent a8826d3 commit 3f13ab0

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
Cargo.lock
55
book
66
target
7+
**/.idea/

src/preface.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,17 @@ $ # QEMU
9898
$ sudo apt-get install qemu-system-arm
9999
```
100100

101+
#### Ubuntu 18.04
102+
- [gcc-arm-none-eabi](https://developer.arm.com/open-source/gnu-toolchain/gnu-rm/downloads)
103+
``` console
104+
$ tar xvjf gcc-arm-none-eabi-8-2018-q4-major-linux.tar.bz2
105+
$ mv gcc-arm-none-eabi-<version_downloaded> <your_desired_path> # optional
106+
$ export PATH=${PATH}:<path_to_arm_none_eabi_folder>/bin # add this line to .bashrc to make persistent
107+
108+
$ # QEMU
109+
$ sudo apt-get install qemu-system-arm
110+
```
111+
101112
#### Windows
102113

103114
- [arm-none-eabi-gdb](https://developer.arm.com/open-source/gnu-toolchain/gnu-rm/downloads).

0 commit comments

Comments
 (0)