i install with complete rust setup options, but i get message "warning: Force-skipping unavailable component 'miri-x86_64-pc-windows-msvc'"
i have msys2 with gcc toolchain installed and working.
after that all rustc DONT WANT TO COMPILE, only after MS VS Build tools and WINDOWS SDK installed. how many times again should i repeat it here. i dont know how you all compile with mingw and rustc, it is not working on my computer.
OK, sorry, I forgot that rustup default does not try to install the toolchain. First rustup toolchain add windows-gnu, so that you have everything necessary for Rust to use the MinGW tooling (such as pre-build std); after that rustup default windows-gnu. After that all should work as it works with MSVC.
i just now have tried, but got:
warning: downloading with complete profile isn't recommended unless you are a developer of the rust language
what is that?
It means that before, during installation or configuration, you selected a complete rustup profile, which pulls in not only necessary basics (like std) and commonly used tools (like clippy), but also something that is rarely necessary in real work (like sources of rustc itself). In general, it should be no problem to use default profile (by executing rustup set profile default) and install any components not included in it separately. However, if there's only a warning and no errors, looks like your installation had succeeded.
no, when i installed rust, i had chosen complete setup and stable type.
this warning ends the action, nothing goes on, after that add command this warning appears and everything stops and i get again prompt >
i dont know what is going on, but nothing you write is working for me.
thank you , now it is working, here is screenshot http://voidmain.site/scr_rust01.png
tell me please where i can find these commands on Rust web page????
bjorn3 and chrisd wrote me other commands and that worked, screenshot http://voidmain.site/scr_rust01.png
tell me please where i can find these commands on Rust web page??
On Rust web page directly - AFAIK nowhere. It's supposed that you'll read the documentation on the tool you're using, and for rustup there's enough info in the repository README. But the Rust language is not strictly tied to rustup.