Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix build with -DCLR_CMAKE_USE_SYSTEM_BROTLI=true
Currently, this fails on Fedora 41: $ ./build.sh --cmakeargs -DCLR_CMAKE_USE_SYSTEM_BROTLI=true /p:FullAssemblySigningSupported=false ... [100%] Linking CXX executable singlefilehost ld.lld: error: undefined symbol: BrotliDecoderCreateInstance >>> referenced by entrypoints.c >>> entrypoints.c.o:(s_compressionNative) in archive ../libs-native/System.IO.Compression.Native/libSystem.IO.Compression.Native.a This seems to be a regression introduced when this bit was accidentally dropped: https://github.com/dotnet/runtime/pull/109707/files#diff-7a160e52815fdd808d9415ada41dd5b1748826b27c78277e14f4adcf1ce61511 Fix the build by re-introducing it. Fixes: #110751
- Loading branch information