rustup
                                
                                 rustup copied to clipboard
                                
                                    rustup copied to clipboard
                            
                            
                            
                        The Rust toolchain installer
### Problem you are trying to solve We had some nice performance enhancements but hadn't caught an edge case well enough (which has led to a reversion). Lets support that...
### Problem With `channel = "1.62"` specified in my `rust-toolchain.toml` cargo commands fail when installing the `aarch64-unknown-linux-musl` component. The complete toolchain file: ``` [toolchain] channel = "1.62" components = ["rustfmt",...
This adds a dedicated page for explaining the install process, starting with a brief overview and then a step-by-step walkthrough for those that want more details or further clarification. This...
The LoongArch architecture (LoongArch) is an Instruction Set Architecture (ISA) that has a RISC style. Documentations: ISA: https://loongson.github.io/LoongArch-Documentation/LoongArch-Vol1-EN.html ABI: https://loongson.github.io/LoongArch-Documentation/LoongArch-ELF-ABI-EN.html More docs can be found at: https://loongson.github.io/LoongArch-Documentation/README-EN.html Related PRs: libc:...
### Problem you are trying to solve While rustup will now offer to automatically install Visual Studio, this is not the right option for all users (for licensing or other...
The curl option specified to use TLSv1.2 explicity while nowadays 1.3 is availalble and recommended. Switch to specifying 1.3 instead of 1.2 for the command that downloads the install script....
### Problem Sorry if it's intentional or already been issued. I thought `rustup override list` respects `rust-toolchain.toml` setting, but it seems not. With the `rust-toolchain.toml` setting like below, ```toml [toolchain]...
### Problem ```sh $ cargo build Compiling ring v0.16.20 Compiling wepoll-ffi v0.1.2 Compiling num-integer v0.1.45 Compiling blocking v1.2.0 The following warnings were emitted during compilation: warning: vendor/wepoll/wepoll.c:1:0: sorry, unimplemented: 64-bit...
### Problem The prescribed method to install Rust (from the [Rust install doc here is](https://www.rust-lang.org/tools/install)) is, ```sh curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh ``` This plain doesn't work...
### Problem Hello! I developing my application on kubernetes. For development, I use minikube, I **mount my host repo** inside a pod and I build/run from inside it. However, I...