Any thoughts on trying to auto-detect an arm tool chain?
Someone else asked about auto-detecting AVR tool chains
Auto Detect Arm Tool Chain?
-
- CodeLite Expert
- Posts: 167
- Joined: Fri Jul 22, 2011 5:32 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Auto Detect Arm Tool Chain?
I think there was a pull request that I have applied that does that. Any quick link for the avr toolchain so I could test that?
Make sure you have read the HOW TO POST thread
-
- CodeLite Expert
- Posts: 167
- Joined: Fri Jul 22, 2011 5:32 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Auto Detect Arm Tool Chain?
With the AVR stuff it seems like the answer is 'it's complicated'
It used to be simple, there was the WinAVR project. You just downloaded the tools and away you go. Still works I'm using it. But doesn't support the latest uP
http://sourceforge.net/projects/winavr/files/
A bunch of people are using Arduino + AVR which I think is an Eclipse based IDE+ AVR and ARM tool chains. I know not so much.
http://arduino.cc/en/Main/Software#toc1
ATMEL has a tool chain that they include with AVRStudio 6.0 or some such and you can get the tool chain separately from them
http://www.atmel.com/tools/atmelavrtool ... ndows.aspx
I'm using the ARM gcc compiler from ARM LTD (but my version is about a year old 4.7 vs 4.8)
https://launchpad.net/gcc-arm-embedded
It used to be simple, there was the WinAVR project. You just downloaded the tools and away you go. Still works I'm using it. But doesn't support the latest uP
http://sourceforge.net/projects/winavr/files/
A bunch of people are using Arduino + AVR which I think is an Eclipse based IDE+ AVR and ARM tool chains. I know not so much.
http://arduino.cc/en/Main/Software#toc1
ATMEL has a tool chain that they include with AVRStudio 6.0 or some such and you can get the tool chain separately from them
http://www.atmel.com/tools/atmelavrtool ... ndows.aspx
I'm using the ARM gcc compiler from ARM LTD (but my version is about a year old 4.7 vs 4.8)
https://launchpad.net/gcc-arm-embedded
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Auto Detect Arm Tool Chain?
I just tested this, (using the SF installer 'WinAVR') with latest git master:
Settings->Build Settings->Compilers->Add an existing compiler, select the WinAVR folder and voila!
See attached:
NOTE:
The new cross compiler locator was implemented by gsmcmullin
In this commit:
https://github.com/eranif/codelite/comm ... 52cb7a1371
Eran
Settings->Build Settings->Compilers->Add an existing compiler, select the WinAVR folder and voila!
See attached:
NOTE:
The new cross compiler locator was implemented by gsmcmullin
In this commit:
https://github.com/eranif/codelite/comm ... 52cb7a1371
Eran
You do not have the required permissions to view the files attached to this post.
Make sure you have read the HOW TO POST thread
-
- CodeLite Expert
- Posts: 167
- Joined: Fri Jul 22, 2011 5:32 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Auto Detect Arm Tool Chain?
Pretty good, I like it! I will check it out in the future.