From de508ba6cccd4016b2e613523f73064e3ee06b6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Canet?= Date: Thu, 31 Dec 2015 11:54:49 +0100 Subject: [PATCH] README: Add missing build dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's just a waste of time to find them manually when compiling ScyllaDB on a fresh install: add them. Also fix the ninja-build name. Signed-off-by: BenoƮt Canet --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b06a5a8e05..1a0130feeb 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,13 @@ git submodule update --recursive * Installing required packages: ``` -sudo yum install yaml-cpp-devel lz4-devel zlib-devel snappy-devel jsoncpp-devel thrift-devel antlr3-tool antlr3-C++-devel libasan libubsan +sudo yum install yaml-cpp-devel lz4-devel zlib-devel snappy-devel jsoncpp-devel thrift-devel antlr3-tool antlr3-C++-devel libasan libubsan gcc-c++ gnutls-devel ninja-build ragel libaio-devel cryptopp-devel xfsprogs-devel ``` * Build Scylla ``` ./configure.py --mode=release --with=scylla --disable-xen -ninja build/release/scylla -j2 # you can use more cpus if you have tons of RAM +ninja-build build/release/scylla -j2 # you can use more cpus if you have tons of RAM ```