生成core文件 ulimit -c unlimited //关闭core文件限制 cat /proc/sys/kernel/core_pattern //查看core生成路径 core C程序 #include <stdio.h>int main() {int* p = NULL;*p = 10;return 0; } 编译程序 g++ -g 1.c -o 1 调试程序