-
Notifications
You must be signed in to change notification settings - Fork 9
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
curl does not pass a ldflag to brotli on Linux: clang-14: error: linker command failed with exit code 1
#115
Comments
Without
|
patchelf --print-needed /opt/local/lib/libcurl.so
libnghttp2.so.14
libidn2.so.0
libpsl.so.5
libnettle.so.8
libgnutls.so.30
libgss.so.3
libzstd.so.1
libbrotlidec.so.1
libz.so.1
libpthread.so.0
libc.so.6
What variant are you using and does the build system detect brotli correctly?
|
Initially I just tried to install whatever default |
|
Since I could not install it with `brotli` enabled, output from the command above does not include it. How should I check if brotli is correctly detected?
Evidently you'll have to start a new build with +brotli and then do something like
```
fgrep -l lbrotli -R `port work curl`
```
You should see -lbrotlidec in a bunch of Makefile files, as well as in the generated `curl-config` script . If not ans as always, the `config.log` file in $worksrcpath should give some clues as to why.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: