Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tools:gccarm [2023/07/22 10:37] – [Linux] darron | tools:gccarm [2024/08/26 01:07] (current) – [Linux] darron | ||
---|---|---|---|
Line 9: | Line 9: | ||
< | < | ||
- | sudo apt-get install gcc-arm-none-eabi gdb-multiarch | + | sudo apt-get install gcc-arm-none-eabi |
</ | </ | ||
Otherwise download the last known release from [[https:// | Otherwise download the last known release from [[https:// | ||
+ | /* | ||
=== Issues=== | === Issues=== | ||
+ | |||
+ | ==Rpi== | ||
Older toolchains (Eg. 7-2018-q2-6) don't build binaries for some modern devices, Eg. STM32U5 so needs to be upgraded manually. | Older toolchains (Eg. 7-2018-q2-6) don't build binaries for some modern devices, Eg. STM32U5 so needs to be upgraded manually. | ||
< | < | ||
- | apt remove gcc-arm-none-eabi | + | sudo apt remove gcc-arm-none-eabi |
wget https:// | wget https:// | ||
tar -xvf gcc-arm-none-eabi-9-2020-q1-update-armv7l-linux.tar.bz2 | tar -xvf gcc-arm-none-eabi-9-2020-q1-update-armv7l-linux.tar.bz2 | ||
Line 25: | Line 28: | ||
sudo rm -r gcc-arm-none-eabi-9-2020-q1-update | sudo rm -r gcc-arm-none-eabi-9-2020-q1-update | ||
</ | </ | ||
+ | */ | ||
=== Resources === | === Resources === | ||