-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Fix typo in md document #82
base: master
Are you sure you want to change the base?
Conversation
Shengliang
commented
Mar 30, 2022
- Fix typo in md document, missing "-".
- Add +nightly example since examples need nightly build version.
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @jamesmunns (or someone else) soon. Please see the contribution instructions for more information. |
Thanks for the PR! The single-dash version of the arguments used to be correct but changed in a recent binutils release, so it's led to a lot of fixes like this being required! For the rustup default, are you sure that's the right command? I thought either you want to ask rustup to install nightly (
|
rustup use "+nightly" to select nightly version dynamically. The default rustc version does not work (that I faced), I have to use "nightly" version. $ rustc -V $ rustup target add thumbv7m-none-eabi |
Updated readme. $ rustup default stable stable-x86_64-unknown-linux-gnu unchanged - rustc 1.59.0 (9d1b2106e 2022-02-23) $ rustc -V $ rustup default nightly nightly-x86_64-unknown-linux-gnu unchanged - rustc 1.61.0-nightly (9c06e1ba4 2022-03-29) $ rustc -V |