forked from facebook/rocksdb
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding CentOS 7 Vagrantfile & build script
Summary: I have updated the Vagrantfile to have an entry for CentOS 7. Also created a simple build script which is pretty similar to the one in Beringei. How to test: ``` vagrant up centos7 ``` Todo: Implement -j X for the build. Closes facebook#3530 Differential Revision: D7090739 Pulled By: ajkr fbshipit-source-id: 9f9eda5b507568993543d08de7ce168dfc12282e
- Loading branch information
1 parent
ad05cbb
commit d633656
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
ROCKSDB_VERSION="5.10.3" | ||
ZSTD_VERSION="1.1.3" | ||
|
||
echo "This script configures CentOS with everything needed to build and run RocksDB" | ||
|
||
yum update -y && yum install epel-release -y | ||
|
||
yum install -y \ | ||
wget \ | ||
gcc-c++ \ | ||
snappy snappy-devel \ | ||
zlib zlib-devel \ | ||
bzip2 bzip2-devel \ | ||
lz4-devel \ | ||
libasan \ | ||
gflags | ||
|
||
mkdir -pv /usr/local/rocksdb-${ROCKSDB_VERSION} | ||
ln -sfT /usr/local/rocksdb-${ROCKSDB_VERSION} /usr/local/rocksdb | ||
|
||
wget -qO /tmp/zstd-${ZSTD_VERSION}.tar.gz https://github.com/facebook/zstd/archive/v${ZSTD_VERSION}.tar.gz | ||
wget -qO /tmp/rocksdb-${ROCKSDB_VERSION}.tar.gz https://github.com/facebook/rocksdb/archive/v${ROCKSDB_VERSION}.tar.gz | ||
|
||
cd /tmp | ||
|
||
tar xzvf zstd-${ZSTD_VERSION}.tar.gz | ||
tar xzvf rocksdb-${ROCKSDB_VERSION}.tar.gz -C /usr/local/ | ||
|
||
echo "Installing ZSTD..." | ||
pushd zstd-${ZSTD_VERSION} | ||
make && make install | ||
popd | ||
|
||
echo "Compiling RocksDB..." | ||
cd /usr/local/rocksdb | ||
chown -R vagrant:vagrant /usr/local/rocksdb/ | ||
sudo -u vagrant make static_lib | ||
cd examples/ | ||
sudo -u vagrant make all | ||
sudo -u vagrant ./c_simple_example |