I am using -std=c++0x -g3 -O0 –Wall
option in CMakeLists.make
file and when segmentation fault is happening core dump file is generated.
When I open the core dump file using gdb it shows the crash location but not the complete back trace.
But when I am running my C++ application with gdb and segmentation fault is happening, using "bt" command I am getting complete back trace.
Can anyone please tell me how can I get the complete back trace of the crash location?