📜  使用 gcc 编译但不链接 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:09.089000             🧑  作者: Mango

代码示例1
gcc -E  --> Preprocessor, but don't compile
gcc -S  --> Compile but don't assemble
gcc -c  --> Preprocess, compile, and assemble, but don't link
gcc with no switch will link your object files and generate the executable