Hi folks,
I just want to compile some source for my Kamikaze 7.09 device. Therefore I get the SDK (OpenWrt-SDK-brcm-2.4-for-Linux-x86_64.tar.bz2). I put my helloworld.c in the "packages" dir and run a "make V=99", but I can't get it running.
My helloworld.c looks like this:
#include <stdio.h>
int main(void)
{
printf("Hello world");
return 0;
}
Locally (VMPlayer Debian Etch 4.01) it just runs fine. Unfortunatelly I couldn't get any help out of the Wiki or other topics here.
Can somebody explain me, how to compile this script for my devide? Would be very nice.