#include <stdio.h> void func(){ int *p = NULL; printf("*p:%d\n", *p);//断错误 } int main(void){ func(); return 0; }
1.首先设置开关 设置 core文件的大小为1000K存放数据
[[email protected] clession]$ ulimit -c
0
[[email protected] clession]$ ulimit -c 1000
2. 编译-g调试程序如下
gcc -g -o bin/gdb_core src/gdb_core.c
[[email protected] clession]$ bin/gdb_core
段错误 (core dumped)
core dumped 核心已转存
3.利用gdb定位断错误的位置
命令行如下:gdb 可执行文件 core文件
[[email protected] clession]$ gdb bin/gdb_core core.15700
4.查看错误
直接定位到了第4行有错误
原文地址:https://www.cnblogs.com/wanglijun/p/8593890.html
时间: 2024-11-05 16:09:24