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

View File

@@ -1,30 +1,30 @@
# cargo rustc
> 编译一个 Rust 包。类似于 `cargo build`,但您可以向编译器传递额外的选项。
> 查看 `rustc --help` 获取所有可用选项
> 更多信息:<https://doc.rust-lang.org/cargo/commands/cargo-rustc.html>.
> 有关所有可用选项,请参阅 `rustc --help`。
> 更多信息:<https://doc.rust-lang.org/cargo/commands/cargo-rustc.html>
- 构建包并 `rustc` 传递选项
- 构建包并将选项传递给 `rustc`
`cargo rustc -- {{rustc_options}}`
- 在 release 模式构建构建,启用优化:
- 以发布模式构建工件,并进行优化:
`cargo rustc --release`
- 使用针对当前 CPU 的特定架构优化编译:
- 针对当前 CPU 进行架构特定的优化编译:
`cargo rustc --release -- -C target-cpu=native`
- 使用速度优化编译:
- 进行速度优化编译:
`cargo rustc -- -C opt-level {{1|2|3}}`
- 使用 [s]ize 优化编译(`z` 也会关闭循环向量化):
- 进行 [s]ize 优化编译(`z` 也会关闭循环向量化):
`cargo rustc -- -C opt-level {{s|z}}`
- 检查您的包是否使用了不安全代码:
- 检查您的包是否使用了不安全代码:
`cargo rustc --lib -- -D unsafe-code`
@@ -34,4 +34,4 @@
- 仅构建指定的二进制文件:
`cargo --bin {{名称}}`
`cargo --bin {{name}}`