add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

37
pages.zh/common/g++.md Normal file
View File

@@ -0,0 +1,37 @@
# g++
> 编译 C++ 源文件。
> GCCGNU 编译器集合)的组成部分。
> 更多信息:<https://gcc.gnu.org>。
- 将源代码文件编译为可执行二进制文件:
`g++ {{path/to/source1.cpp path/to/source2.cpp ...}} {{-o|--output}} {{path/to/output_executable}}`
- 激活所有错误和警告的输出:
`g++ {{path/to/source.cpp}} -Wall {{-o|--output}} {{output_executable}}`
- 显示常见警告,输出调试符号,并在不影响调试的情况下进行优化:
`g++ {{path/to/source.cpp}} -Wall {{-g|--debug}} -Og {{-o|--output}} {{path/to/output_executable}}`
- 选择编译语言标准C++98/C++11/C++14/C++17
`g++ {{path/to/source.cpp}} -std={{c++98|c++11|c++14|c++17}} {{-o|--output}} {{path/to/output_executable}}`
- 包含位于与源文件不同路径的库:
`g++ {{path/to/source.cpp}} {{-o|--output}} {{path/to/output_executable}} -I{{path/to/header}} -L{{path/to/library}} -l{{library_name}}`
- 编译并链接多个源代码文件为可执行二进制文件:
`g++ {{-c|--compile}} {{path/to/source1.cpp path/to/source2.cpp ...}} && g++ {{-o|--output}} {{path/to/output_executable}} {{path/to/source1.o path/to/source2.o ...}}`
- 为性能优化编译的程序:
`g++ {{path/to/source.cpp}} -O{{1|2|3|fast}} {{-o|--output}} {{path/to/output_executable}}`
- 显示版本:
`g++ --version`