How can I do core dump analysis for a production application in UNIX/Linux? -


I have come to an option to perform Core Dump Analysis using GDB - It is mentioned that I need to make it executable with special I included to merge the information of symbols in the command line parameters but it is executable size Increases, and I think it will slow down an application. If there is another way to perform core dump analysis without affecting the performance of an application, can someone give advice?

Application will not be slowed with debug symbols. You can work with divided debug symbols as follows.

  GCC-GGDB -O target obj1.o obj2.o ... strip target - keep-only-debug-o target.dbg bar target   

Then in gdb, use symbol-file target.dbg

Comments