-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create multi-arch nightlies #14795
Comments
Note that a script like this can be used to install a multi-arch nightly (by just downloading both) target=unknown-linux-gnu
curl -O http://static.rust-lang.org/dist/rust-nightly-x86_64-$target.tar.gz
curl -O http://static.rust-lang.org/dist/rust-nightly-i686-$target.tar.gz
tar xf rust-nightly-x86_64-$target.tar.gz
tar xf rust-nightly-i686-$target.tar.gz
cp -r rust-nightly-i686-$target/lib/rustlib/i686-$target \
rust-nightly-x86_64-$target/lib/rustlib
(cd rust-nightly-x86_64-$target && \
find lib/rustlib/i686-$target/lib -type f >> lib/rustlib/manifest.in)
./rust-nightly-x86_64-$target/install.sh $@ |
This is happening as part of the new rustup/multirust, and there's probably a better/newer bug? (Maybe @brson, @alexcrichton or @edunham knows?) At least #17356 is relevant. |
I also thought that there may be a newer bug but I can't seem to find it, so perhaps this can suffice! |
This is basically done with rustup now, so closing. |
fix: Add macro modifier for highlighting tokens in macro calls Followup to rust-lang/rust-analyzer#14777 we have to tell the client about the semantic tokens inside macro calls as those can be remapped. Adding a modifier will force this behavior.
Some people would like to be able to cross-compile from nightlies.
The text was updated successfully, but these errors were encountered: