引子
在上一篇文章中,我们创建了一个会崩溃的main
可执行文件:
# 创建main.cpp
cat > main.cpp <<EOF
#include <iostream>
void test(){
std::cout << "test func" << std::endl;
throw "some error";
}
int main(){
std::cout<<"main started!"<<std::endl;
test();
return 0;
}
EOF
# 编译成可执行文件
g++ -g -o main main.cpp
...About 4 min