Skip to content
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

Closed
brson opened this issue Jun 10, 2014 · 4 comments
Closed

Create multi-arch nightlies #14795

brson opened this issue Jun 10, 2014 · 4 comments

Comments

@brson
Copy link
Contributor

brson commented Jun 10, 2014

Some people would like to be able to cross-compile from nightlies.

@alexcrichton
Copy link
Member

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 $@

@huonw
Copy link
Member

huonw commented Jan 6, 2016

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.

@alexcrichton
Copy link
Member

I also thought that there may be a newer bug but I can't seem to find it, so perhaps this can suffice!

@alexcrichton
Copy link
Member

This is basically done with rustup now, so closing.

bors added a commit to rust-lang-ci/rust that referenced this issue Jun 5, 2023
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants