9e819d0963
1) There is no need to download and install the compression libraries twice just to get access to their header files during the compile phase. 2) Ensure that the compression library headers files used during the compile phase are the same ones used to build the static library that is linked into the library.
25 lines
1.1 KiB
Bash
Executable File
25 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# install all required packages for rocksdb that are available through yum
|
|
ARCH=$(uname -i)
|
|
sudo yum -y install openssl java-1.7.0-openjdk-devel.$ARCH
|
|
|
|
# install gcc/g++ 4.8.2 via CERN (http://linux.web.cern.ch/linux/devtoolset/)
|
|
sudo wget -O /etc/yum.repos.d/slc5-devtoolset.repo http://linuxsoft.cern.ch/cern/devtoolset/slc5-devtoolset.repo
|
|
sudo wget -O /etc/pki/rpm-gpg/RPM-GPG-KEY-cern http://ftp.mirrorservice.org/sites/ftp.scientificlinux.org/linux/scientific/51/i386/RPM-GPG-KEYs/RPM-GPG-KEY-cern
|
|
sudo yum -y install devtoolset-2
|
|
|
|
wget http://gflags.googlecode.com/files/gflags-2.0-no-svn-files.tar.gz
|
|
tar xvfz gflags-2.0-no-svn-files.tar.gz; cd gflags-2.0; scl enable devtoolset-2 ./configure; scl enable devtoolset-2 make; sudo make install
|
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
|
|
|
|
# set java home so we can build rocksdb jars
|
|
export JAVA_HOME=/usr/lib/jvm/java-1.7.0
|
|
|
|
# build rocksdb
|
|
cd /rocksdb
|
|
scl enable devtoolset-2 'make jclean clean'
|
|
scl enable devtoolset-2 'PORTABLE=1 make rocksdbjavastatic'
|
|
cp /rocksdb/java/target/librocksdbjni-* /rocksdb-build
|
|
cp /rocksdb/java/target/rocksdbjni-* /rocksdb-build
|
|
|