This is not a cross-compilation setup at the moment. Just a local C dev environment. Here is the code:
#include <stdio.h>
int main(void){
printf("Hello World\n");
}
I compile with command: vbbcm68k test.c
Output:
>#include <stdio.h>
error 248 in line 1 of "test.c": file 'stdio.h' not found
I've installed vbcc_bin_amigaos68k and vbcc_target_m68k-amigaos
My user-startup looks like this:
;BEGIN vbcc
assign >NIL: vbcc: Hard Disk:vbcc
assign >NIL: C: vbcc:bin vbcc:include ADD
setenv VBCC vbcc:
;END vbcc
My installation root looks like this ( the header files exist in include/ ):
Directories
bin
config
doc
include
lib
Files
test.asm
test.c
vbcc_inst.log
vbcc_version
If I copy the .h file to the root directory it works, but obviously I want them to be detected in vbcc:include. Can anyone help?