Is it possible to compile native GCC for ARM (host == target == ARM) using Code Sourcery G++? If it is not possible, could I use crosstool-NG to build the cross-compile and then using this one for compiling the native ARM GCC?

Thank you,


Edit: as to why: I'm creating my own distro for beagleboard...

link|improve this question
I've got to ask, why would you want to run GCC on ARM? – BCS Oct 27 '10 at 1:42
You may have better luck on chiphacker.com (uC SO). I do think it will be terribly slow though. The compilation on an ARM host would be unbearably slow IMO. – leppie Oct 27 '10 at 8:05
feedback

2 Answers

CodeSourcery provides prebuilt toolchains only for Linux/x86 and Windows (see "Host System Requirements" here). If you want a native ARM-hosted toolchain, you should be able to build one using a cross-compiler. If you want a prebuilt one, you can try some of the existing ARM distros such as Debian-arm, or Aboriginal Linux (it's made to be run in QEMU but you can probably extract the compiler from it and run natively).

link|improve this answer
feedback

better off to use openembedded

link|improve this answer
Yeah, but I prefer to start from scratch. If I want to understand something I think it's better to avoid automated tools (IMHO) – Carlo Oct 30 '10 at 12:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.