Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get Eclipse to find and use a gcc based toolchain in a non-standard location

Tags:

I am trying to get Eclipse to work with a GCC based ARM cross compiler.

How can I configure eclipse to add the new tool chain to its list of tool chains?

The tool chain is a Raisonance distributed GCC tool chain: C:\Program Files\Raisonance\Ride\arm-gcc\bin\arm-none-eabi-gcc.exe

like image 444
JeffV Avatar asked May 12 '09 15:05

JeffV


People also ask

How to add GCC toolchain in Eclipse?

Be sure to restart Eclipse after installing. Open Project Properties and go to the Tool Chain Editor under the C/C++ Build section. Select Cross GCC in the Current Toolchain selection box. Select the Settings section right above Tool Chain Editor under C/C++ Build.

What is Eclipse toolchain?

That's what is called a toolchain: the set of tools (compiler, debugger, linker) that you want to use with eclipse. You have to set up the toolchain because for most platforms there is more than one available. Follow this answer to receive notifications.


1 Answers

Here is a link to a pdf describing how to set up a cross compiler tool chain for ARM and eclipse.

http://www.sparkfun.com/tutorial/ARM/ARM_Cross_Development_with_Eclipse.pdf

Hope it helps.

like image 97
FeatureCreep Avatar answered Oct 12 '22 09:10

FeatureCreep