After doing an install via screensteps live, I was unable to get a build to work. I kept getting errors about the gnu cross compiler not being found
Code:
"arm-frc-linux-gnueabi-g++" not found in PATH
Then I realized this was ONLY impacting my OLD projects and not a new sample project...
ADDITIONALLY, I have seen the same issue others surrounding doing a 'clean' and the console says 'rm' was not found.
On my Mac, 'rm' is found in /bin
On my Mac, 'arm-frc-linux-gnueabi-g++' is found in /usr/local/bin
So, here's the solution:
Go to 'preferences' and select C++->Build->Environment :
Click on 'Add...'
Set 'Name' to 'PATH'
Set 'Value' to '/usr/local/bin:/bin'
Restart Eclipse
Now 'Clean' should work and 'Build' should work on old and new projects.