Linux下用GDB調試程序崩潰錯誤

首先開啓選項容許系統在程序崩潰時自動生成core dump文件 測試 ulimit -c unlimited調試 編寫測試程序test.cblog void main(void) {     int * p = 0;     *p = 10;      } it 編譯程序,必定要加上選項-g ,生成調試信息編譯 gcc -g -o test test.ctest 運行程序會生成崩潰文件 coreg
相關文章
相關標籤/搜索