-
Notifications
You must be signed in to change notification settings - Fork 18
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
add powerpc-musl images #46
base: main
Are you sure you want to change the base?
Conversation
Out of curiosity, what's held this back from being merged? Was it incomplete? |
There's nothing hindering this, missing from this pr would be a readme change |
I grabbed it to see if it would work for me out of the box, and when going to compile a program I get errors like the ones in this issue: cross-rs/cross#1416 Interestingly, I also get:
Even though I've already got that. I don't know a ton about the inner workings here, but could potentially try some specific things out if it would help get this merged! |
ah yes, need to add it to the list of targets that need build-std by default |
oh wait, this is cross-toolchains, never mind then, not applicable. You need to add [target.powerpc-unknown-linux-musl]
build-std = true |
So I've been using docker-in-docker and was having issues with the
That's been working for all my other builds consistently. I've tried this with both the latest release and the main branch of cross-rs. If it would help, I can try and do a |
Interesting! An example would be helpful |
I'm currently setting up a small repository with a complete example, but as I am, I wanted to note that after I call: cargo build-docker-image powerpc-unknown-linux-musl-cross --tag local I get the following warning, which may or may not be important?
|
Alright, I've got a pretty minimal example. I thought about just pasting the README here, but since perhaps there might lie an issue in another part of my setup, I figured I'd link to the whole thing: https://github.com/dfego/cross-issue |
Yes, that's cross-rs/cross#1416 still don't know how to solve it fully :/ |
So I did see that issue, but I've also successfully gotten
Notably, I can't do that with |
requires cross-rs/cross#1346