Hi, just installed oskit, but cant seem to compile anything using it:
#include <oskit/clientos.h> #include <stdio.h> void main() { oskit_clientos_init(); printf("Hello, World\n"); } fails to compile with: /tmp/ccPfErPd.o: In function `main': /tmp/ccPfErPd.o(.text+0x7): undefined reference to `oskit_clientos_init' collect2: ld returned 1 exit status I've used gcc272 and gcc-2.95.2, am I missing some thing simple like -loskit, I know it's not really that as I tried it... -Jon