54fd92bc34
GCC7 has a new feature called -Wimplicit-fallthrough enabled by default which checks for fallthrough in switch statements which is a common error. When a fallthrough is actually intended a comment saying so will satisfy GCC. Fixes cbfstool not building with GCC7. Change-Id: I83252fc96be7ce0971d4251b0fc88fbbd7440e71 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/20036 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> |
||
---|---|---|
.. | ||
liblz4.pc.in | ||
LICENSE | ||
lz4.c | ||
lz4.h | ||
lz4frame.c | ||
lz4frame.h | ||
lz4frame_static.h | ||
lz4hc.c | ||
lz4hc.h | ||
Makefile | ||
README.md | ||
xxhash.c | ||
xxhash.h |
LZ4 - Library Files
The lib directory contains several files, but you don't necessarily need them all.
To integrate fast LZ4 compression/decompression into your program, you basically just need "lz4.c" and "lz4.h".
For more compression at the cost of compression speed (while preserving decompression speed), use lz4hc on top of regular lz4. lz4hc
only provides compression functions. It also needs lz4
to compile properly.
If you want to produce files or data streams compatible with lz4
command line utility, use lz4frame. This library encapsulates lz4-compressed blocks into the official interoperable frame format. In order to work properly, lz4frame needs lz4 and lz4hc, and also xxhash, which provides error detection algorithm.
(Advanced stuff : It's possible to hide xxhash symbols into a local namespace. This is what liblz4
does, to avoid symbol duplication in case a user program would link to several libraries containing xxhash symbols.)
A more complex "lz4frame_static.h" is also provided, although its usage is not recommended. It contains definitions which are not guaranteed to remain stable within future versions. Use for static linking only.
The other files are not source code. There are :
- LICENSE : contains the BSD license text
- Makefile : script to compile or install lz4 library (static or dynamic)
- liblz4.pc.in : for pkg-config (make install)