1、ps aux | grep mxx.exe
查找可执行程序的进程id
2、gdb attach pid
attach可执行程序的进程pid
3、continue/c 或者continue or c
当attach进程时,会停止进程的运行,这时使进程继续运行需要使用continue/c命令
4、其他gdb操作(bt b watch etc..)
现在可以使用其他gdb命令来调试了
1、ps aux | grep mxx.exe
查找可执行程序的进程id
2、gdb attach pid
attach可执行程序的进程pid
3、continue/c 或者continue or c
当attach进程时,会停止进程的运行,这时使进程继续运行需要使用continue/c命令
4、其他gdb操作(bt b watch etc..)
现在可以使用其他gdb命令来调试了