From 643b787c7bdd8af46c29fd99c3d6e93005884099 Mon Sep 17 00:00:00 2001 From: Adam Retter Date: Mon, 10 Jul 2017 12:08:16 -0700 Subject: [PATCH] Added a note about LZ4 compression dependency Summary: Closes https://github.com/facebook/rocksdb/pull/2554 Differential Revision: D5391019 Pulled By: siying fbshipit-source-id: a1d36037ef4c34b9ca77ab2127f3e17242c617cc --- INSTALL.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/INSTALL.md b/INSTALL.md index cb7916381..820293a57 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -32,6 +32,7 @@ to build a portable binary, add `PORTABLE=1` before your make commands, like thi * You can link RocksDB with following compression libraries: - [zlib](http://www.zlib.net/) - a library for data compression. - [bzip2](http://www.bzip.org/) - a library for data compression. + - [lz4](https://github.com/lz4/lz4) - a library for extremely fast data compression. - [snappy](http://google.github.io/snappy/) - a library for fast data compression. - [zstandard](http://www.zstd.net) - Fast real-time compression @@ -53,6 +54,7 @@ to build a portable binary, add `PORTABLE=1` before your make commands, like thi `sudo apt-get install libsnappy-dev`. * Install zlib. Try: `sudo apt-get install zlib1g-dev`. * Install bzip2: `sudo apt-get install libbz2-dev`. + * Install lz4: `sudo apt-get install liblz4-dev`. * Install zstandard: `sudo apt-get install libzstd-dev`. * **Linux - CentOS / RHEL** @@ -81,6 +83,10 @@ to build a portable binary, add `PORTABLE=1` before your make commands, like thi sudo yum install bzip2 bzip2-devel + * Install lz4: + + sudo yum install lz4-devel + * Install ASAN (optional for debugging): sudo yum install libasan