-
Notifications
You must be signed in to change notification settings - Fork 507
1.0.58/#527 broke building openssl on macOS #529
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
Comments
Thanks for the report! I think this is actually a bug in the openssl-src crate, probably needing an update around here |
Yep, agreed that's seems like a possible fix! Sorry for burying the lede at the end of my report. Just wasn't sure if Anyway, want me to prep a fix for |
The latest version of cc-rs broke building OpenSSL on macOS (see rust-lang/cc-rs#529). This commit just serves to trigger a CI build to validate that CI catches this. I'll update with a patch shortly.
Nah if you want to send a PR feel free! |
Perfect, because I failed to wait for your response anyway :D |
Fixed by alexcrichton/openssl-src-rs#67. |
Build log here: https://github.com/MaterializeInc/rust-krb5-src/pull/11/checks?check_run_id=850555939
The issue is that OpenSSL's configure command does not allow specifying both
darwin64-x86_64-cc
and-arch x86_64
. The reason-arch
appears in there at all is because of #527, as far as I can tell.Possibly the solution is to adjust openssl-src to skip the
-arch
flag here, but figured I'd raise the issue here since it was a patch release of cc that caused the breakage.The text was updated successfully, but these errors were encountered: