I've tried may things, but I've discovered that I need to use my iPhone development files to compile the arm binary... this is very troublesome. Here's my procedure:

First I create the path:

PATH=$PATH:/usr/local/bin:/sw/bin:/sw/sbin:/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
export PATH

Next, I cd my echo source from opensource.apple.com

cd /Users/Ronna/Desktop/echo 

And here's where it gets bad:

arm-apple-darwin10-gcc-4.2.1 --sysroot /Developer/Platforms/iPhoneOS.platform/Developer -o echo echo.c

echo.c:1:23: error: sys/cdefs.h: I get errors. I think you only need to read a little bit to see what's wrong, can anyone make a suggestion? I want to be able to use this method to compile other source code and maybe even ./configure and some C++...

echo.c:1:23: error: sys/cdefs.h: No such file or directory
echo.c:4: error: expected declaration specifiers or ‘...’ before string constant
echo.c:4: warning: data definition has no type or storage class
echo.c:12: error: expected declaration specifiers or ‘...’ before string constant
echo.c:12: warning: data definition has no type or storage class
echo.c:16:19: error: stdio.h: No such file or directory
echo.c:17:20: error: stdlib.h: No such file or directory
echo.c:18:20: error: string.h: No such file or directory
echo.c:20: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘__P’
echo.c: In function ‘main’:
echo.c:39: warning: incompatible implicit declaration of built-in function ‘printf’
echo.c:45: warning: incompatible implicit declaration of built-in function ‘exit’

Etcetera.

P.S. This is for a jailbroken iPhone.

link|improve this question

2  
you need to add -sysroot to point to the arm files and probably a bunch of other flags (don't really know for sure, that's why i chose comment over answer) – Per Johansson Nov 17 '11 at 21:55
so who would I do that, do I copy some headers and add #include tags??? – Trevor Rudolph Nov 17 '11 at 21:59
1  
It's a flag for gcc. try arm-apple-darwin10-gcc-4.2.1 --sysroot /Developer/Platforms/iPhoneOS.platform/Developer -o echo echo.c – Per Johansson Nov 17 '11 at 22:02
thats way better but i stiill get a few errors, look... – Trevor Rudolph Nov 17 '11 at 22:11
i think its missing files, ill try the compiler with openbsd echo source – Trevor Rudolph Nov 17 '11 at 22:13
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.