📜  c++ 链接器输入和输出 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:45.972000             🧑  作者: Mango

代码示例1
The input to the linker is the output from the compiler, either directly as object files (.o) are within libraries (.a and .so). Often a linker command will have a single .o file that contains the main program plus a list of libraries.

The output from the linker is the executable or program. There is no default extension, although some people use .exe which is a standard extension on some operating systems.