摘要:
#include <iostream> extern "C" { #include "stdio.h" void print() { const char* s = "Hello asm\n"; int len = 10; printf("Hello C\n"); asm volatile( "mo 阅读全文
摘要:
binutils是静态调试工具,而同属于GNU的gdb则是一款动态的调试工具。 GDB的启动方式 gdb->file exefile->set args->start->continue gdb exefile gdb exefile corefilegdb exefile pid 断点 软件断点: 阅读全文