Lines Matching full:zstd
1 # ZSTD Windows binary package
5 - `zstd.exe` : Command Line Utility, supporting gzip-like arguments
6 - `dll\libzstd.dll` : The ZSTD dynamic library (DLL)
7 - `dll\libzstd.lib` : The import library of the ZSTD dynamic library (DLL) for Visual C++
8 - `example\` : The example of usage of the ZSTD library
9 - `include\` : Header files required by the ZSTD library
10 - `static\libzstd_static.lib` : The static ZSTD library (LIB)
17 Usage: zstd [arg] [input] [output]
26 ## The example of usage of static and dynamic ZSTD libraries with gcc/MinGW
29 `fullbench-dll` uses a dynamic ZSTD library from the `dll` directory.
30 `fullbench-lib` uses a static ZSTD library from the `lib` directory.
32 ## Using ZSTD DLL with gcc/MinGW
37 It means that if a project that uses ZSTD consists of a single `test-dll.c`
42 The compiled executable will require ZSTD DLL which is available at `dll\libzstd.dll`.
44 ## The example of usage of static and dynamic ZSTD libraries with Visual C++
47 dynamic ZSTD library from the `dll` directory. The solution works with Visual C++
51 ## Using ZSTD DLL with Visual C++
63 The compiled executable will require ZSTD DLL which is available at `dll\libzstd.dll`.