zstd/contrib/single_file_libs
Nick Terrell ac3a136b0a [lib] Replace 64-bit divisions with ZSTD_div64() 2020-09-09 14:35:39 -07:00
..
examples Renamed directory 2020-04-07 13:34:19 +02:00
.gitignore minor markdown formatting fix 2020-05-26 13:15:35 -07:00
README.md Minor tidy 2020-05-18 12:33:44 +02:00
build_decoder_test.sh Fixed VS variable shadowing warning (and added test) 2020-07-29 12:33:39 +02:00
build_library_test.sh Fixed VS variable shadowing warning (and added test) 2020-07-29 12:33:39 +02:00
combine.sh Reduced generated sized on macOS (and other envs where realpath is missing) 2020-05-18 10:12:02 +02:00
create_single_file_decoder.sh Try to Fix Single File Library Combiner Script to Handle Relative Includes 2020-05-04 15:20:26 -04:00
create_single_file_library.sh Minor tidy 2020-05-18 12:33:44 +02:00
zstd-in.c [lib] Replace 64-bit divisions with ZSTD_div64() 2020-09-09 14:35:39 -07:00
zstddeclib-in.c Move standard includes to zstd_deps.h 2020-08-26 12:25:08 -07:00

README.md

Single File Zstandard Libraries

The script combine.sh creates an amalgamated source file that can be used with or without zstd.h. This isn't a header-only file but it does offer a similar level of simplicity when integrating into a project.

All it now takes to support Zstd in your own projects is the addition of a single file, two if using the header, with no configuration or further build steps.

Decompressor

This is the most common use case. The decompression library is small, adding, for example, 26kB to an Emscripten compiled WebAssembly project. Native implementations add a little more, 40-70kB depending on the compiler and platform.

Create zstddeclib.c from the Zstd source using:

cd zstd/contrib/single_file_libs
./combine.sh -r ../../lib -o zstddeclib.c zstddeclib-in.c

Then add the resulting file to your project (see the example files).

create_single_file_decoder.sh will run the above script, creating the file zstddeclib.c (build_decoder_test.sh will also create zstddeclib.c, then compile and test the result).

Full Library

The same tool can amalgamate the entire Zstd library for ease of adding both compression and decompression to a project. The roundtrip example uses the original zstd.h with the remaining source files combined into zstd.c (currently just over 1.2MB) created from zstd-in.c. As with the standalone decoder the most useful compile flags have already been rolled-in and the resulting file can be added to a project as-is.

Create zstd.c from the Zstd source using:

cd zstd/contrib/single_file_libs
./combine.sh -r ../../lib -o zstd.c zstd-in.c

It's possible to create a compressor-only library but since the decompressor is so small in comparison this doesn't bring much of a gain (but for the curious, simply remove the files in the decompress section at the end of zstd-in.c).

create_single_file_library.sh will run the script to create zstd.c (build_library_test.sh will also create zstd.c, then compile and test the result).