inikep / lizard

Lizard (formerly LZ5) is an efficient compressor with very fast decompression. It achieves compression ratio that is comparable to zip/zlib and zstd/brotli (at low and medium compression levels) at decompression speed of 1000 MB/s and faster.
Other
652 stars 40 forks source link

Symbol names clash with ZSTD #34

Open alexey-milovidov opened 3 years ago

alexey-milovidov commented 3 years ago

Some symbols like HUF_decompress, FSE_decompress have identical names to the same symbols in ZSTD library. This prevents using Lizard and ZSTD in the same binary.

alexey-milovidov commented 3 years ago

If I don't compile the entropy files from Lizard and link to ZSTD it appears to work. I will simply assume that the code is compatible... most likely it is even the same.