-
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
bootstrap: Add openssl configuration for sparc64-unknown-linux-gnu #45465
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @aturon (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
src/bootstrap/native.rs
Outdated
@@ -446,6 +446,7 @@ impl Step for Openssl { | |||
"powerpc64-unknown-linux-gnu" => "linux-ppc64", | |||
"powerpc64le-unknown-linux-gnu" => "linux-ppc64le", | |||
"s390x-unknown-linux-gnu" => "linux64-s390x", | |||
"sparc64-unknown-linux-gnu" => "linux-sparc64", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe it's actually linux64-sparcv9
: https://github.com/libtor/openssl/blob/1ad38e5/Configure#L385
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, good catch, thank you. I was actually unsure about this but my tests aren't finished yet.
Will get back in a few minutes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have changed that now. I'm now testing whether we need to pass "-m64" as well (see the case for BSD-sparc64 further below).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, OpenSSL puts -m64 in there already for linux64-sparcv9.
@bors: r+ rollup Thanks! |
@bors: r+ rollup |
📌 Commit e105697 has been approved by |
@alexcrichton I think you picked the wrong commit. My first mapping was incorrect. Could you please make sure you are merging b9f2cfb? Thanks |
@bors r=alexcrichton b9f2cfb |
💡 This pull request was already approved, no need to approve it again.
|
🙀 |
bootstrap: Add openssl configuration for sparc64-unknown-linux-gnu Hi! This adds the target missing mapping for sparc64-unknown-linux-gnu. See: rust-lang#45456 Thanks
Hi!
This adds the target missing mapping for sparc64-unknown-linux-gnu.
See: #45456
Thanks