lz4/lib/README.md

74 lines
2.7 KiB
Markdown
Raw Normal View History

LZ4 - Library Files
================================
2016-11-02 02:14:04 +00:00
The directory contains many files, but depending on project's objectives,
not all of them are necessary.
2016-11-10 16:49:42 +00:00
#### Minimal LZ4 build
2016-11-02 02:14:04 +00:00
The minimum required is **`lz4.c`** and **`lz4.h`**,
which will provide the fast compression and decompression algorithm.
2016-11-10 16:49:42 +00:00
#### The High Compression variant of LZ4
2016-11-10 16:49:42 +00:00
2016-11-02 02:14:04 +00:00
For more compression at the cost of compression speed,
the High Compression variant **lz4hc** is available.
It's necessary to add **`lz4hc.c`** and **`lz4hc.h`**.
The variant still depends on regular `lz4` source files.
In particular, the decompression is still provided by `lz4.c`.
2016-11-10 16:49:42 +00:00
2016-11-10 17:30:59 +00:00
#### Compatibility issues
2016-11-10 16:49:42 +00:00
2016-11-02 02:14:04 +00:00
In order to produce files or streams compatible with `lz4` command line utility,
it's necessary to encode lz4-compressed blocks using the [official interoperable frame format].
This format is generated and decoded automatically by the **lz4frame** library.
In order to work properly, lz4frame needs lz4 and lz4hc, and also **xxhash**,
which provides error detection.
(_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.)
2016-11-10 16:49:42 +00:00
#### Advanced API
2016-11-02 02:14:04 +00:00
A more complex `lz4frame_static.h` is also provided.
It contains definitions which are not guaranteed to remain stable within future versions.
It must be used with static linking ***only***.
2016-11-10 16:49:42 +00:00
2016-11-10 17:30:59 +00:00
#### Using MinGW+MSYS to create DLL
2016-11-11 07:57:46 +00:00
DLL can be created using MinGW+MSYS with the `make liblz4` command.
2016-11-15 10:06:16 +00:00
This command creates `dll\liblz4.dll` and the import library `dll\liblz4.lib`.
The import library is only required with Visual C++.
The header files `lz4.h`, `lz4hc.h`, `lz4frame.h` and the dynamic library
`dll\liblz4.dll` are required to compile a project using gcc/MinGW.
The dynamic library has to be added to linking options.
2016-11-11 07:57:46 +00:00
It means that if a project that uses LZ4 consists of a single `test-dll.c`
2016-11-22 10:14:11 +00:00
file it should be linked with `dll\liblz4.dll`. For example:
2016-11-10 17:30:59 +00:00
```
gcc $(CFLAGS) -Iinclude/ test-dll.c -o test-dll dll\liblz4.dll
2016-11-10 17:30:59 +00:00
```
The compiled executable will require LZ4 DLL which is available at `dll\liblz4.dll`.
2016-11-10 17:30:59 +00:00
2016-11-10 16:49:42 +00:00
#### Miscellaneous
2016-11-02 02:14:04 +00:00
Other files present in the directory 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)
2016-11-02 02:14:04 +00:00
- README.md : this file
2016-11-03 12:25:20 +00:00
[official interoperable frame format]: ../doc/lz4_Frame_format.md
2016-11-10 16:49:42 +00:00
#### License
All source material within __lib__ directory are BSD 2-Clause licensed.
See [LICENSE](LICENSE) for details.
The license is also repeated at the top of each source file.