When I then try to build the project, I get internal compiler errors.
 Here are the first few lines of 35 errors it has:

I have built v3.08 and v2.x using VC++ 6 and 7.x You do get a lot of casting warnings (which you can turn off/ignore), but I never got a compiler error.

I would suspect it is something to do with your setup.. In fact I have only once seen an INTERNAL COMPILER ERROR when using VC++, and it was my fault.

Things to check:

Make sure the compiler can find the file.
Try compiling the .c file alone (without other .c files)
The file could be to large for the compiler.. There are settings that will increase the buffer size.. (I had this problem when I put in a char array that was just MASSIVE).. I ended up removing the data from the executable to fix it..

If the file still gives errors when you compile it alone, try commenting out some things and see if it gives a different (more normal) error..

Randall Fox



Reply via email to