When I debug some problem like a segfault in a fortran program, the first three frames in the backtrace (0-2) always point to some functions in the intel library libifcoremt.so and in the system library libpthread.so, and only in frame 3, the actual cause in my code is shown:
raise () libpthread-2.12.so 0x0000003DE2A0F6AB for__issue_diagnostic () libifcoremt.so.5 0x00002AFBB1E83348 for_emit_diagnostic () libifcoremt.so.5 0x00002AFBB1E83913 somefunc (somepar=somevalue) somefile.f90:1364 somebinary 0x00000000029EAA3B
I am not completely sure but I believe it has not always been like that, but I don't know what could have changed in my setup.
Can someone help me figure out what is going on here, and whether there's a possibility to make _my_ relevant code become frame 0 again?
Thread Topic:
Help Me