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.
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