On 13-Feb-2000, davidturetsky <[EMAIL PROTECTED]> wrote: > I am executing a Linear Program program I wrote and compiled. It > terminates without generating output (but creates the output file) > with a "Segmentation fault" > A segmentation fault occurs when you attempt to access memory that you are not allowed to (usually deferencing an invalid pointer).
> I'm trying to convert programs to run under g++ which I previously > developed using Visual c 5.0 and would appreciate any help in sorting > this out > > Is there a log which is generated which might provide further details? > You can compile with the -g switch to turn debugging on, and then use gdb to debug the program, and it will tell you which line caused the seg fault. Pete