Skip to content

Commit

Permalink
Added a note about LZ4 compression dependency
Browse files Browse the repository at this point in the history
Summary: Closes facebook#2554

Differential Revision: D5391019

Pulled By: siying

fbshipit-source-id: a1d36037ef4c34b9ca77ab2127f3e17242c617cc
  • Loading branch information
adamretter authored and facebook-github-bot committed Jul 10, 2017
1 parent 56656e1 commit 643b787
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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**
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 643b787

Please sign in to comment.