Hi
I can't find the reason for errors i get when I compile some of my programs.
Is there somewhere a list of possible error codes?
(*** Error code 42 ***)
Vesa
No list, but this code is kinda special - it usually means the browse database (.tag) is corrupt. Often due to a file version mismatch, but I guess other events may cause it too. Delete your <project name>.tag file, and rebuild the project to see if it makes any difference...
Thanks for your answer, but it does not help.
The error still remains.
The programs compile without any other error or warning messages and greate obj-files as usual.
Are the obj-files OK so that I can use them as linker input?
(By the way, I test with version 5.0 beta on Windows XP)
Vesa
Hi
I kept testing and got the error code 42 when compiling in IDE:
static void foo(void){
char c =' '; // error code 42
//char c = ' '; // warnings only
return;
} // function end
I think the browse database (.tag) is not corrupt, but this is an error in database processing.
Is there a way to increase the database speed? It seems to make lots of disk traffic.
Another question: Is there help program like implib to make libs from dlls?
Than you making this excellent C environment!
Vesa
Quote from: vesa on March 04, 2008, 07:00:13 AM
I think the browse database (.tag) is not corrupt, but this is an error in database processing.
Maybe, maybe not. I will look at it.
Quote from: vesa on March 04, 2008, 07:00:13 AM
Is there a way to increase the database speed? It seems to make lots of disk traffic.
It's an SQLITE database. No idea. Ask them.
Quote from: vesa on March 04, 2008, 07:00:13 AM
Another question: Is there help program like implib to make libs from dlls?
See help file - POLIB.
Thanks!
Vesa