This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I am trying to compile a Fortran 90 code that basically solves a very large system of differential equations (around 5000 ODEs). In order to increase the precision of the solver, I have to increase the size of the solution arrays, and I am running into a problem. I am [...] read more
Apparently gdb cannot find the symbols associated with local variable-length arrays. Is it a gcc problem or a gdb problem? (Or maybe it's just my problem...). Take the following program "main.c" #include <stdio.h> #include <stdlib.h> int main( int argc, char **argv ) { int n; n = random() & 0xf; [...] read more