Hello,
I am trying to diagnose a particularly obnoxious segmentation fault in some code compiled with ifort 15.0.0. When I run the code, it produces a "Segmentation fault (core dumped)" message. In the past, I've been able to diagnose those by adding a "-g -traceback" switch to the compiler. However, this time, despite the rather extensive compiler switch list
-O2 -g -traceback -check bounds -check format -check pointers -check stack -check uninit -fpe0 -ftrapuv -fp-stack-check -gen-interfaces -warn interfaces
the segmentation fault did not produce any traceback. At all. There was just this message, "Segmentation fault (core dumped)". How do I diagnose where this is coming from?
Thanks,
Sourish