Lines Matching +full:build +full:- +full:linux +full:- +full:gcc
4 targeting real-time compression scenarios at zlib-level and better compression ratios.
8 This repository represents the reference implementation, provided as an open-source dual [BSD](LICE…
11 a list of known ports and bindings is provided on [Zstandard homepage](http://www.zstd.net/#other-l…
15 [![Build Status][travisDevBadge]][travisLink]
16 [![Build status][AppveyorDevBadge]][AppveyorLink]
17 [![Build status][CircleDevBadge]][CircleLink]
18 [![Build status][CirrusDevBadge]][CirrusLink]
21 [travisDevBadge]: https://api.travis-ci.com/facebook/zstd.svg?branch=dev "Continuous Integration te…
22 [travisLink]: https://travis-ci.com/facebook/zstd
24 [AppveyorLink]: https://ci.appveyor.com/project/YannCollet/zstd-p0yf0
27 [CirrusDevBadge]: https://api.cirrus-ci.com/github/facebook/zstd.svg?branch=dev
28 [CirrusLink]: https://cirrus-ci.com/github/facebook/zstd
29 [OSSFuzzBadge]: https://oss-fuzz-build-logs.storage.googleapis.com/badges/zstd.svg
30 [OSSFuzzLink]: https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:zstd
35 on a desktop running Ubuntu 20.04 (`Linux 5.11.0-41-generic`),
36 with a Core i7-9700K CPU @ 4.9GHz,
37 using [lzbench], an open-source in-memory benchmark by @inikep
38 compiled with [gcc] 9.3.0,
43 [gcc]: https://gcc.gnu.org/
46 | --------------- | ------| -----------| ---------- |
47 | **zstd 1.5.1 -1** | 2.887 | 530 MB/s | 1700 MB/s |
48 | [zlib] 1.2.11 -1 | 2.743 | 95 MB/s | 400 MB/s |
49 | brotli 1.0.9 -0 | 2.702 | 395 MB/s | 450 MB/s |
50 | **zstd 1.5.1 --fast=1** | 2.437 | 600 MB/s | 2150 MB/s |
51 | **zstd 1.5.1 --fast=3** | 2.239 | 670 MB/s | 2250 MB/s |
52 | quicklz 1.5.0 -1 | 2.238 | 540 MB/s | 760 MB/s |
53 | **zstd 1.5.1 --fast=4** | 2.148 | 710 MB/s | 2300 MB/s |
54 | lzo1x 2.10 -1 | 2.106 | 660 MB/s | 845 MB/s |
56 | lzf 3.6 -1 | 2.077 | 410 MB/s | 830 MB/s |
62 The negative compression levels, specified with `--fast=#`,
67 Speed vs Compression trade-off is configurable by small increments.
72 on a server running Linux Debian (`Linux version 4.14.0-3-amd64`)
73 with a Core i7-6700K CPU @ 4.0GHz,
74 using [lzbench], an open-source in-memory benchmark by @inikep
75 compiled with [gcc] 7.3.0,
79 ---------------------------|--------------------
90 … to compress future data. But at the beginning of a new data set, there is no "past" to build upon.
96 …-users` [sample set](https://github.com/facebook/zstd/releases/tag/v1.1.3), created from [github p…
100 ------------------|-------------------|--------------------
101 …ges/dict-cr.png "Compression Ratio") | ![Compression Speed](doc/images/dict-cs.png "Compression Sp…
106 Training works if there is some correlation in a family of small data samples. The more data-specif…
114 `zstd --train FullPathToTrainingSet/* -o dictionaryName`
118 `zstd -D dictionaryName FILE`
122 `zstd -D dictionaryName --decompress FILE.zst`
125 ## Build instructions
133 - `make install` : create and install zstd cli, library and man pages
134 - `make check` : create and run `zstd`, tests its behavior on local platform
138 A `cmake` project generator is provided within `build/cmake`.
139 It can generate Makefiles or other build scripts
146 A Meson project is provided within [`build/meson`](build/meson). Follow
147 build instructions in that directory.
150 example about how Meson is used to build this project.
152 Note that default build type is **release**.
155 You can build and install zstd [vcpkg](https://github.com/Microsoft/vcpkg/) dependency manager:
159 ./bootstrap-vcpkg.sh
168 Going into `build` directory, you will find additional possibilities:
169 - Projects for Visual Studio 2005, 2008 and 2010.
171 - Automated build scripts for Visual compiler by [@KrzysFR](https://github.com/KrzysFR), in `build/…
172 which will build `zstd` cli and `libzstd` library without any need to open Visual Studio solution.
176 You can build the zstd binary via buck by executing: `buck build programs:zstd` from the root of th…
177 The output binary will be in `buck-out/gen/programs/`.
192 Zstandard is dual-licensed under [BSD](LICENSE) and [GPLv2](COPYING).