-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
openssl: fix libdir for Android #15483
openssl: fix libdir for Android #15483
Conversation
When building libcurl it cannot find lcrypto and lssl because they installed over lib64 and not lib.
This comment has been minimized.
This comment has been minimized.
Here is the log with the error without the fix added in this PR: conan install libcurl/7.87.0@ -pr:b default -pr:h android --build missing
And here the config.log from libcurl cat /root/.conan/data/libcurl/7.87.0/_/_/build/a08ea9e1dd879beff551ed2dd7864467a6dababf/build-release/config.log
|
I detected other pull requests that are modifying openssl/1.x.x recipe:
This message is automatically generated by https://github.com/ericLemanissier/conan-center-conflicting-prs so don't hesitate to report issues/improvements there. |
@uilianries @danimtb @RubenRBS @SpaceIm @prince-chrismc could help me to understand what is the error in the Conan v1 pipeline, build 1?
|
@kletoz It should be an internal error, like bad networking. I just restart the CI job. Thank you for reporting us! |
@kletoz Do you have an associated issue or a build log which can prove that error? It would be nice to illustrate for future cases. Could you please paste here your build log error? |
@uilianries The logs I posted here #15483 (comment) have the build error. |
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.
It should be lib
regardless of settings.
Is it safe for all? I was trying to follow the previous pattern for Linux. |
Yes it is safe for all, it must be |
Co-authored-by: SpaceIm <[email protected]>
7b1fa82
Co-authored-by: SpaceIm <[email protected]>
@SpaceIm could you help me to understand why |
Conan v1 pipeline ✔️All green in build 4 (
Conan v2 pipeline (informative, not required for merge) ❌
The v2 pipeline failed. Please, review the errors and note this will be required for pull requests to be merged in the near future. See details:Failure in build 4 (
Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability. |
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.
@kletoz now it passed.
* Fix libdir for Android When building libcurl it cannot find lcrypto and lssl because they installed over lib64 and not lib. * Update recipes/openssl/1.x.x/conanfile.py Co-authored-by: SpaceIm <[email protected]> * Update recipes/openssl/1.x.x/conanfile.py Co-authored-by: SpaceIm <[email protected]> --------- Co-authored-by: SpaceIm <[email protected]>
Specify library name and version: openssl/1.x.x
When building libcurl it cannot find lcrypto and lssl because they installed over lib64 and not lib.