test.cpp (预编译器: 头文件copy 宏替换等)> test.i (编译器)> test.s(汇编文件) (汇编器)> test.obj/test.o(目标文件) (链接器)> test.exe/test(可执行文件)
- test.cpp
#include <iostream>
#define PI 3.1415926
int main(int argc, char* argv[])
{
std::cout << "PI is: " << PI << std::endl;
return 0;
}
- 预编译
g++ -E test.cpp -o test.i
- 编译
g++ -S test.i -o test.s
- 汇编
g++ -C test.s -o test.o
- 可执行文件
g++ test.s -o test
file test