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-04-12 06:45 AM
If you open a console can you run it from the command line?
Is it installed properly? What's in your PATH environment variable?2013-04-12 07:27 AM
the path is :
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/user /CodeSourcery/Sourcery_G++_Lite/bin;${PATH} Any help please?2013-04-12 02:26 PM
2013-04-15 12:55 AM
2013-04-15 02:08 AM
In Ubuntu in bashrc file you add the line - that will solve your problem:
export PATH=''$PATH'':~/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin/2013-04-15 02:10 AM
There are ways to add paths permanenty (i.e. by some scripts invoked at startup), but this depends on the Linux distribution. Just use a search engine and the right key words.
The disadvantage of this method - you can have just one of this toolchains who name their binaries arm-none-eabi-xxx, because it whould overshadow all others. Configuring your IDE would be the better way.2013-04-15 02:18 AM
I added the line but i still have this error :
Program ''arm-none-eabi-gcc'' not found in PATH2013-04-15 02:23 AM
2013-05-03 11:53 AM