-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
rustbuild: stdlib not installed for 2nd target triple #39235
Comments
IIRC this hasn't ever worked, but would be a great bug to fix with rustbuild! |
I've made a fix to this issue, you just need to apply this patch:
This will check the I don't know if this is the best approach or if there is some case that will fail and I'm not aware. But, if it is a ok patch, can we apply it to the next version of rust since it seems that this is a major problem for a lot of users (at least for me it is since I'm trying to make the rust ebuild for gentoo support multiple targets and this bug is just what is preventing me). Thanks |
@sezaru looks like a great start to me, you're more than welcome to send a PR! I think that we'llalso want to update |
When the user select more than one target to generate rustlibs for, rustbuild will only install the host one. This patch fixes it, more info in rust-lang#39235 (comment)
Fixes other targets rustlibs installation When the user select more than one target to generate rustlibs for, rustbuild will only install the host one. This patch fixes it, more info in rust-lang#39235 (comment)
Fixes other targets rustlibs installation When the user select more than one target to generate rustlibs for, rustbuild will only install the host one. This patch fixes it, more info in rust-lang#39235 (comment)
I believe this is fixed now that #40479 landed, closing. Please let me know if I'm wrong though! |
Hi. I am testing out rust 1.15.0 beta and I came across a problem installing from source:
OS
Debian GNU/Linux 8 x86_64
Rust version
10893a9 (1.15.0-beta.5)
Actions
Expected outcome
x86_64-unknown-linux-gnu
andi686-unknown-linux-gnu
directories in$HOME/rust/lib/rustlib
.Actual outcome
Only the
x86_64-unknown-linux-gnu
directory is present.I am new to rust (just a couple of days) so forgive me if I've overlooked something. I'm pretty sure I installed 1.14.0 similarly and
i686-unknown-linux-gnu
was installed OK. That was using the old makefiles-based build system.The text was updated successfully, but these errors were encountered: