使用GDB根据段错误core dump文件定位问题

使用GDB根据段错误core dump文件定位问题

#include 
int main(void)
{
     
    char *s = "hello world";
    *s = 'H';
}
$ gcc segfault.c -g -o segfault
$ ./segfault
Segmentation fault

来自:https://en.wikipedia.org/wiki/Segmentation_fault

如何定位

$ gdb-multiarch ./segfault core
GNU gdb (Ubuntu 8.1-0ubuntu3.2) 8.1.0.20180409-git
Copyright (C) 2018 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from ./segfault...done.
[New LWP 26596]
Core was generated by `./segfault'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0  0x0000564dbceae76e in main () at segfault.c:19
19	    *s = 'H';
(gdb) 

这样就定位到具体出错的行了。

你可能感兴趣的:(Linux,应用程序编程)