Revision 89cb481aa16ccfbed8f64018d1a98710c3907141 authored by Ankit Gupta on 22 April 2014, 07:09:40 UTC, committed by Ankit Gupta on 22 April 2014, 07:09:40 UTC
1 parent 677b0d6
Raw File
mac-install-gflags.sh
#!/bin/sh
# Install gflags for mac developers.

set -e

DIR=`mktemp -d /tmp/rocksdb_gflags_XXXX`

cd $DIR
wget https://gflags.googlecode.com/files/gflags-2.0.tar.gz
tar xvfz gflags-2.0.tar.gz
cd gflags-2.0

./configure
make
make install

# Add include/lib path for g++
echo 'export LIBRARY_PATH+=":/usr/local/lib"' >> ~/.bash_profile
echo 'export CPATH+=":/usr/local/include"' >> ~/.bash_profile

echo ""
echo "-----------------------------------------------------------------------------"
echo "|                         Installation Completed                            |"
echo "-----------------------------------------------------------------------------"
echo "Please run `. ~/bash_profile` to be able to compile with gflags"
back to top