gdb手冊

摘自:https://github.com/hellogcc/100-gdb-tips/blob/master/src/quit-gdb-silently.md.
我只是摘抄我平時沒注意到的,或者我認爲重要的html

  1. gdb退出時不顯示提示信息
    set confirm off
  2. 列出全部的函數
    info functions 或者 info functions th[列出全部以th開始的函數]
  3. 進入不帶調試
    當函數帶有調試信息時,gdb時,s(step)能夠進入,可是當函數不帶調試信息時,是不能進入的.須要設置**set step-mode on**.
  4. 退出正在調試的函數
    使用fin 或者return expressiongit

    例子參見 http://www.cnblogs.com/457220157-FTD/articles/5358935.htmlgithub

  5. 直接執行函數
    call func_name() 或者 print func_name()express

    例子參見 http://www.cnblogs.com/457220157-FTD/articles/5358935.html函數

相關文章
相關標籤/搜索