From 1bbd0bbd4c481777223560efbcc93bcbe91ce7aa Mon Sep 17 00:00:00 2001 From: Penguin Date: Sun, 13 Feb 2022 14:10:07 -0600 Subject: [PATCH] updated readme again --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 31559752..e9bc757a 100644 --- a/README.md +++ b/README.md @@ -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 `