Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow -L to disable lttng. Enable it by default #4261

Merged
merged 1 commit into from Apr 2, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions do_autogen.sh
Expand Up @@ -10,6 +10,7 @@ do_autogen.sh: make a ceph build by running autogen, etc.
level 1: -g
level 3: -Wextra
level 4: even more...
-L --without-lttng
-T --without-tcmalloc
-e <path> dump encoded objects to <path>
-P profiling build
Expand All @@ -30,8 +31,8 @@ die() {
debug_level=0
verbose=0
profile=0
CONFIGURE_FLAGS="--disable-static"
while getopts "d:e:hHrTPjpnvO:" flag
CONFIGURE_FLAGS="--disable-static --with-lttng"
while getopts "d:e:hHrTPLjpnvO:" flag
do
case $flag in
d) debug_level=$OPTARG;;
Expand All @@ -56,6 +57,8 @@ do

e) encode_dump=$OPTARG;;

L) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --without-lttng";;

*)
echo
usage
Expand Down