GCC Compiler for ARM
-
I want to compile a source code for my pocket pc. It requires the gcc compiler. The command to compile is as follow:
arm-coff-gcc -S -o CODE.S -mcpu=strongarm1100 -O3 \
-I/usr/local/lib/gcc-lib/arm-coff/3.1/include -I/usr/include CODE.cI want to know how can I get a copy of GCC for ARM? Is there anyone know about it? Thanks, A. Riazi
-
I want to compile a source code for my pocket pc. It requires the gcc compiler. The command to compile is as follow:
arm-coff-gcc -S -o CODE.S -mcpu=strongarm1100 -O3 \
-I/usr/local/lib/gcc-lib/arm-coff/3.1/include -I/usr/include CODE.cI want to know how can I get a copy of GCC for ARM? Is there anyone know about it? Thanks, A. Riazi
Start at: http://gcc.gnu.org/ Installation could be difficult. On Windows you might need mingw or cygwin to start with. I'm not sure where to go from there. Even on Unix type systems, installation is not exactly trivial. Take your time, search the web and mailing lists to see who has done this. Read all the documentation you can find, then start installing. gcc is perhaps the most common compiler for any system other than windows. There are better ones in most cases, but it is hard to argue with free, so gcc gets used everywhere. As a C compiler it is good to excellent, for C++ it works, but that is about all you can say. P.S. If you don't find useful documentaiton, write a log of what you do. When you get it working post instructions someplace. Others will thank you.