Hi all,
I'm new to C and when trying to recompile comlib.c I get the following errors,
<snip>
demos/comlibtest.c:7: stdio.h: No such file or directory
demos/comlibtest.c:8: stdlib.h: No such file or directory
In file included from include/comlib/serial.h:21,
from include/comlib/gps.h:27,
from include/comlib/comlib.h:103,
from demos/comlibtest.c:10:
include/comlib/types.h:22: cyg/infra/cyg_type.h: No such file or directory
In file included from include/comlib/gps.h:27,
from include/comlib/comlib.h:103,
from demos/comlibtest.c:10:
</snip>
However when I compile the following program
<code>
#include <stdio.h>
#include <stdlib.h>
main (){
printf("Hello World...\n");
return 0;
}
</code>
I get no errors. Anyideas as to my problem? Where to look?
I'm new to C and when trying to recompile comlib.c I get the following errors,
<snip>
demos/comlibtest.c:7: stdio.h: No such file or directory
demos/comlibtest.c:8: stdlib.h: No such file or directory
In file included from include/comlib/serial.h:21,
from include/comlib/gps.h:27,
from include/comlib/comlib.h:103,
from demos/comlibtest.c:10:
include/comlib/types.h:22: cyg/infra/cyg_type.h: No such file or directory
In file included from include/comlib/gps.h:27,
from include/comlib/comlib.h:103,
from demos/comlibtest.c:10:
</snip>
However when I compile the following program
<code>
#include <stdio.h>
#include <stdlib.h>
main (){
printf("Hello World...\n");
return 0;
}
</code>
I get no errors. Anyideas as to my problem? Where to look?