Files
tldr/pages.zh/common/rustup-set.md

16 lines
512 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# rustup 设置
> 修改 `rustup` 设置。
> 更多信息:<https://rust-lang.github.io/rustup>。
- 设置默认主机三元组:
`rustup set default-host {{host_triple}}`
- 设置默认配置文件(`minimal` 仅包含 `rustc``rust-std``cargo`,而 `default` 还添加 `rust-docs``rustfmt``clippy`
`rustup set profile {{minimal|default}}`
- 设置 `rustup` 在运行 `rustup update` 时是否应自动更新自身:
`rustup set auto-self-update {{enable|disable|check-only}}`