|
|
|
@ -24,18 +24,18 @@ Loose naming convention for toolchains:
|
|
|
|
|
- arm-none-eabi:
|
|
|
|
|
- Toolchain targetting the embedded ABI for arm
|
|
|
|
|
- Debian/Ubuntu:
|
|
|
|
|
```
|
|
|
|
|
`
|
|
|
|
|
sudo apt-get install gcc-arm-none-eabi binutils-arm-none-eabi gdb-arm-none-eabi
|
|
|
|
|
```
|
|
|
|
|
`
|
|
|
|
|
- **NOTE:** If you run into an issue when running arm-none-eabi-gdb where it needs libncurses.so.5 on Ubuntu/Debian, install this package:
|
|
|
|
|
```
|
|
|
|
|
`
|
|
|
|
|
sudo apt-get install libncurses5
|
|
|
|
|
```
|
|
|
|
|
`
|
|
|
|
|
|
|
|
|
|
- Arch
|
|
|
|
|
```
|
|
|
|
|
`
|
|
|
|
|
sudo pacman -S arm-none-eabi-binutils arm-none-eabi-gcc arm-none-eabi-gdb arm-none-eabi-newlib
|
|
|
|
|
```
|
|
|
|
|
`
|
|
|
|
|
|
|
|
|
|
- Gentoo:
|
|
|
|
|
- See this wiki [here](https://wiki.gentoo.org/wiki/How_to_build_a_toolchain_for_arm_cortex-m_and_cortex-r).
|
|
|
|
@ -46,12 +46,14 @@ Loose naming convention for toolchains:
|
|
|
|
|
- Ubuntu/Debian: (To be added)
|
|
|
|
|
|
|
|
|
|
- Arch:
|
|
|
|
|
|
|
|
|
|
`
|
|
|
|
|
sudo pacman -S avr-binutils avr-gcc avr-gdb avr-libc avrdude
|
|
|
|
|
`
|
|
|
|
|
|
|
|
|
|
- Gentoo:
|
|
|
|
|
- Install via [crossdev](https://wiki.gentoo.org/wiki/Crossdev):
|
|
|
|
|
|
|
|
|
|
`
|
|
|
|
|
crossdev -s4 --stable --portage --verbose --target avr
|
|
|
|
|
`
|
|
|
|
|