c++语言编译器

基础概念

文件后缀解释

后缀(Suffix)说明(File Contains)
.C/.c++/.cc/.cp/.cpp/.cxx源文件
C++ source code that is to be preprocessed.
.h头文件
C or C++ header file.
<none>The standard C++ system header files have no suffix
.ii预处理文件
C++ source code that is not to be preprocessed.
This type of file is produced as an intermediate step in compilation.
.s汇编语言文件
Assembly language code.
this type of file is produced as an intermediate step in compilation.
.o目标文件
An object file in a format appropriate to be supplied to the linker.
This type of file is produced as an intermediate step in compilation.
.a静态库文件
Static object library (archive).
.so
.lib/.dll (for windows)
动态库/共享库/运行时库文件
Shared object library.

编译过程

参考 gcc(link),处理将工具 gcc 换成 g++ 外,其他操作一样。

编译/链接选项

todo gcc编译参数 - https://blog.csdn.net/langzijing/article/details/78555812在新窗口打开

编译选项说明备注
-m64指定编译为64位应用
-std=指定编译标准,例如: -std=c++11/-std=c++14
-g包含调试信息
-w不显示告警
-O优化等级,通常使用 -O3
-I加载头文件路径前
-fPIC
(Position-Independent Code)
产生二进制文件没有绝对地址,使用全部相对地址。二进制可以被加载到内存任意位置,且可以正确的执行共享库必加
链接选项说明备注
-l加在库名前面
-L加在库路径前面
-Wl,<选项>将<选项>传递给链接器
-Wl,-rpath="共享库路径"指定运行时共享库(.so文件)路径所在的目录