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

@@ -0,0 +1,21 @@
# rustup 目标
> 修改工具链支持的目标。
> 如果没有 `--toolchain` 选项,`rustup` 将使用默认工具链。有关工具链的更多信息,请参见 `rustup help toolchain`。
> 更多信息:<https://rust-lang.github.io/rustup>。
- 向工具链添加目标:
`rustup target add --toolchain {{toolchain}} {{target}}`
- 从工具链中移除目标:
`rustup target remove --toolchain {{toolchain}} {{target}}`
- 列出工具链的可用和已安装目标:
`rustup target list --toolchain {{toolchain}}`
- 列出工具链的已安装目标:
`rustup target list --toolchain {{toolchain}} --installed`