-
Notifications
You must be signed in to change notification settings - Fork 699
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
CMake missing OpenSSL dependency #2446
Comments
Hmm, I'm confused by this report and couldn't immediately replicate it. We don't see to use
It also seems to work fine in CI on Mac (and finds the OpenSSL there and uses it). We might want to just move from the current SHA-256 setup (which uses either external OpenSSL or vendored PicoSHA2) to a world where it's always vendored BLAKE3. Because that will probably lead to fewer questions about external dependencies. But I can't immediately replicate this report... :-/ |
What is the failure mode you see here -- does it fail to build? Or does it successfully fall back to the vendored/internal PicoSHA2? |
This happens in downstreams (e.g. Halide, where I observed the issue) when going through: find_package(wabt REQUIRED)
target_link_libraries(mylib PRIVATE wabt::wabt) This doesn't affect the main build, which uses There's no test for this in CI, unfortunately. When testing out of the build directory, the OpenSSL libraries are already linked into the test apps. |
Are you able to contribute a CI test that exercises this configuration so we can make sure not to break it? Honestly I think we should probably just eliminate the OpenSSL dependency entirely, but whatever we do should not break users like you. |
I will be able to... eventually. I'm waiting for my company to approve contributing under the W3 CLA that the README indicates is required. |
AFAIK we don't actually require or verify CG membership before merging PRs on this repo (and certainly not for something like a CI config that helps somebody). |
Fixed by #2447 |
When
wabt
depends on OpenSSL, it fails tofind_dependency()
the package in its config files. This can be observed when installingwabt
via Homebrew; we get the error:This could be fixed by, e.g. adding the following snippet to
scripts/wabt-config.cmake.in
, just after@PACKAGE_INIT@
:If you fix this, pretty please cut a new release 🙏
The text was updated successfully, but these errors were encountered: