We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When running go test ., go install, or any other build step on OpenBSD:
go test .
go install
# github.com/miekg/pkcs11 ld: error: unable to find library -ldl cc: error: linker command failed with exit code 1 (use -v to see invocation) FAIL github.com/sigstore/fulcio/pkg/api [build failed]
This is due to two dependencies referencing an old buggy version of the https://github.com/miekg/pkcs11 library:
miekg/pkcs11#140 fixes the issue in the upstream, and is available in miekg/pkcs11 v1.1.0 or newer.
The text was updated successfully, but these errors were encountered:
It seems like running go get github.com/miekg/pkcs11@v1.1.1 successfully fixes this problem, so I will raise an appropriate PR for it.
go get github.com/miekg/pkcs11@v1.1.1
Sorry, something went wrong.
Let's use this to also track adding a presubmit test somehow to make sure this still compiles!
Successfully merging a pull request may close this issue.
When running
go test .
,go install
, or any other build step on OpenBSD:This is due to two dependencies referencing an old buggy version of the https://github.com/miekg/pkcs11 library:
miekg/pkcs11#140 fixes the issue in the upstream, and is available in miekg/pkcs11 v1.1.0 or newer.
The text was updated successfully, but these errors were encountered: