arm-none-eabi-g++ command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
arm-none-eabi-g++: command not found
or when using sudo you get the following error message
sudo: arm-none-eabi-g++: command not found
Solutions to arm-none-eabi-g++: command not found
How To Fix arm-none-eabi-g++: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu arm-none-eabi-g++ is provided by gcc-arm-none-eabi package.
gcc-arm-none-eabi is:
Bare metal C and C++ compiler for embedded ARM chips using Cortex-M, and Cortex-R processors. This package is based on the GNU ARM toolchain provided by ARM.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gcc-arm-none-eabi
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gcc-arm-none-eabi.
sudo apt -y install gcc-arm-none-eabi
Or if you have aptitude installed you can use the following command.
sudo aptitude install gcc-arm-none-eabi
Summary
In this tutorial we learn how to fix arm-none-eabi-g++ command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.