Skip to content

Commit

Permalink
do_autogen.sh: build with static librocksdb
Browse files Browse the repository at this point in the history
Signed-off-by: Sage Weil <[email protected]>
  • Loading branch information
liewegas committed Aug 1, 2014
1 parent eb1cd78 commit bcebf9c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion do_autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ do_autogen.sh: make a ceph build by running autogen, etc.
-O <level> optimize
-n use libnss
-j with java
-r with rocksdb
EOF
}
Expand All @@ -30,7 +31,7 @@ debug_level=0
verbose=0
profile=0
CONFIGURE_FLAGS="--disable-static"
while getopts "d:e:hHTPjpnvO:" flag
while getopts "d:e:hHrTPjpnvO:" flag
do
case $flag in
d) debug_level=$OPTARG;;
Expand All @@ -49,6 +50,8 @@ do

j) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --enable-cephfs-java";;

r) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --with-librocksdb-static";;

v) verbose=1;;

e) encode_dump=$OPTARG;;
Expand Down

0 comments on commit bcebf9c

Please sign in to comment.