-
Notifications
You must be signed in to change notification settings - Fork 93
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
Copy bin directory to host sysroot #200
Conversation
Thanks @FenrirWolf bors r+ |
200: Copy bin directory to host sysroot r=japaric a=FenrirWolf Allows custom targets to use the copy of `lld` bundled with Rust. cc rust-lang/rust#48772
Build succeeded |
I just tried it and it seems to work! Thanks a lot @FenrirWolf! @japaric Could we get a new crates.io release for this? |
@phil-opp v0.3.11 is out and has these changes |
Thanks a lot! |
Could you please upload binaries for 0.3.11 to https://github.com/japaric/xargo/releases? I'm using your install.sh script to pull the latest tag and CI is failing as the tag exists, but binaries don't. Happy to help doing that as well if you point me in the right direction. |
@ah- done. Linux releases have been uploaded. |
That was quick! Thanks, works perfectly again. |
I had to update my rust nightly as well as install the new xargo to get this to work, but it works for me too! |
201: Update Cargo.lock r=japaric a=Woyten Since #200, `Cargo.lock` is considered dirty after Xargo has been built. This is particularly annoying when using Xargo as a Git submodule such as in tock/libtock-rs#18. This PR updates `Cargo.lock` s.t. it will no longer be considered dirty after building Xargo.
Allows custom targets to use the copy of
lld
bundled with Rust.cc rust-lang/rust#48772