Trouble with compiling Arduino IDE 2.3.7

ExNoise

Member
hi, i recently switched to Ubuntu and after i installed the arduino IDE through the official ZIP and added the teensyduino url to the additional board manager urls it doesn't let me compile, i get the following error:
Code:
fork/exec /home/noneofyourbusiness/.arduino15/packages/teensy/tools/teensy-compile/11.3.1/arm/bin/arm-none-eabi-g++: no such file or directory

Compilation error: fork/exec /home/noneofyourbusiness/.arduino15/packages/teensy/tools/teensy-compile/11.3.1/arm/bin/arm-none-eabi-g++: no such file or directory
is this a common issue? are there any missing packages i should have installed?
 
Definitely not a common issue.

In a terminal, try "ls -l /home/noneofyourbusiness/.arduino15/packages/teensy/tools/teensy-compile/11.3.1/arm/bin" to check if that directory does have the arm-none-eabi-g++ file. If you get an error the directory doesn't exist, shorten the path until you get to a directory which does exist. If Arduino IDE simply didn't install the file, maybe retry by uninstall and reinstall in Boards Manager a few times and use this command to check.

If the file exists, try this command "file /home/noneofyourbusiness/.arduino15/packages/teensy/tools/teensy-compile/11.3.1/arm/bin/arm-none-eabi-g++" and "ldd /home/noneofyourbusiness/.arduino15/packages/teensy/tools/teensy-compile/11.3.1/arm/bin/arm-none-eabi-g++". These commands give info about the type of file and what system libraries it will use when run. If the file exists but is somehow incompatible with your system, these commands ought to info about the problem.
 
Back
Top