Hi Manos,
Thanks. My setup contains C:\pcc32\include and C:\pcc32\lib
Building a quick example :
#include <stdio.h>
int main()
{
printf("Hello world!\n");
return 0;
}
pcc32.exe /c /I.\include Hello.c
Link32.exe /SUBSYSTEM:CONSOLE /LIBPATH:.\lib Hello.obj msvcrt.lib
The executable is 3584 Bytes.