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

17
pages.zh/linux/mpicc.md Normal file
View File

@@ -0,0 +1,17 @@
# mpicc
> Open MPI C 包装编译器。
> 这些包装器实际上是一个薄壳,位于 C 编译器之上,它们在命令行中添加了编译和链接 Open MPI 程序所需的相关编译器和链接器标志,然后调用底层的 C 编译器来实际执行命令。
> 更多信息:<https://www.mpich.org/static/docs/latest/www1/mpicc.html>。
- 将源代码文件编译为目标文件:
`mpicc -c {{path/to/file.c}}`
- 链接目标文件并生成可执行文件:
`mpicc -o {{executable}} {{path/to/object_file.o}}`
- 在一个命令中编译和链接源代码:
`mpicc -o {{executable}} {{path/to/file.c}}`