You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The libcurl instantiation in LLVM's debuginfod client has CURLOPT_ACCEPT_ENCODING left at its default value, NULL, which will disable compression for the transfer, even if available. This should be set to autodetect available compression schemes by setting it to emptystring. This should enable compression when used with an appropriately built libcurl.
The text was updated successfully, but these errors were encountered:
All encodings that the underlying libcurl supports are automatically
detected and accepted. libcurl will then decompress on the fly. This
improves effective network transfer rate and prevents server-side
decompression for files stored compressed.
Fixesllvm#63534
All encodings that the underlying libcurl supports are automatically
detected and accepted. libcurl will then decompress on the fly. This
improves effective network transfer rate and prevents server-side
decompression for files stored compressed.
Fixes#63534
The libcurl instantiation in LLVM's debuginfod client has CURLOPT_ACCEPT_ENCODING left at its default value, NULL, which will disable compression for the transfer, even if available. This should be set to autodetect available compression schemes by setting it to emptystring. This should enable compression when used with an appropriately built libcurl.
The text was updated successfully, but these errors were encountered: