Linux的段錯誤調試方法

來源:互聯網
上載者:User

 

linux段錯誤的調試方法

 

相關博文:

http://blog.csdn.net/htianlong/article/details/7439030

http://www.cnblogs.com/panfeng412/archive/2011/11/06/2237857.html

http://www.cnblogs.com/panfeng412/archive/2011/10/24/2222413.html

http://hi.baidu.com/zmohadnaadbfntr/item/5732180d816c1d813c42e211

 

 如下面的的程式就會產生段錯誤

cs.c

#include <stdio.h>int main(void){    int *p = NULL;    *p = 10;    return 0;}

Makefile

CFLAGS=-WallCC=gcccs:cs.o$(CC) cs.o -o cs cs.o:cs.c$(CC) -c -o cs.o cs.cclean:$(RM) *.o.PHONY:clean

執行命令

make

./cs

輸出結果

 

調試方法:

  1. 切換到root使用者     su root
  2. 執行 ulimit -a
  3. 執行 ulimit -c unlimited
  4. 更改Makefile檔案   在-Wall後增加 -g
  5. 執行 make
  6. 執行 ./cs   目的 產生core檔案
  7. 執行 gdb ./cs core
  8. 執行quit 退出gdb
  9. ctrl d 切換回普通使用者

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.