2013-04-12 02:41 AM
Hi,
Am programming my stm32 using eclipse on linux, i configured link resources and i added path, but am having this error: Program ''arm-none-eabi-gcc'' not found in PATH I don' know why i have this error because i think that i' ve added : - path in properties -> environnement and in discovery otions. isn't it enough. Can someone pease help me.2013-05-04 04:23 AM
Try this:
In a terminal, execute:PATH=$PATH:/home/dorra/CodeSourcery/Sourcery_G++_Lite/bin
export PATH Then start your IDE (eclipse) from the very same terminal. If that works, you can either: - add this path to the PATH variable permanently; How and where this could be done depends on your linux distribution and the default shell. Try google. - always start eclipse from a shell; Instead of starting eclipse directly, start it from a small shell script. For convenience, you can enter this script in the command property of the menu, instead of ''/usr/bin/eclipse''. The shell script could look like this (I'm using bash here ...)#! /bin/bash
PATH=$PATH:/home/dorra/CodeSourcery/Sourcery_G++_Lite/bin
export PATH
/usr/bin/eclipse