Task Complete !
I downloaded YunGcc.tgz and UnTARred it onto my SDCard,
then compiled using GCC fom SD Card :
// testSpd.c : //
// - loop=400,000,000 => IPS = ((400000000 * 5) / 10 seconds) = 200 MIPS
#include <stdio.h>
void main()
{
long i;
printf("Start ..\n");
for(i=0;i<400000000;i++)
{
}
printf("Done !\n");
}
root@domino:/mnt/sda2/Code# gcc testSpd.c
/mnt/sda2/gcc/bin/ld: Warning: a.out uses -msoft-float (set by /mnt/sda2/gcc/bin/../lib/gcc/mips-openwrt-linux-uclibc/4.6.4/crtbegin.o), /tmp/cc80ZcyD.o uses -mhard-float
root@domino:/mnt/sda2/Code# ./a.out
Start ..
Done !
root@domino:/mnt/sda2/Code#