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

24
pages.zh/common/gdc.md Normal file
View File

@@ -0,0 +1,24 @@
# gdc
> 使用GCC作为后端的D编译器。
> 更多信息请访问:<https://wiki.dlang.org/Using_GDC>。
- 创建可执行文件:
`gdc {{path/to/source.d}} -o {{path/to/output_executable}}`
- 打印模块依赖信息:
`gdc -fdeps`
- 生成Ddoc文档
`gdc -fdoc`
- 生成D接口文件
`gdc -fintfc`
- 在编译时不链接标准GCC库
`gdc -nostdlib`