From: Jonathan Rajotte Date: Mon, 23 Jan 2017 23:11:52 +0000 (-0500) Subject: jjb: lttng-tools: Handle debug_rcu conf value X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=22780fe647bc3ded986b258b77635b5dfd97273d;p=lttng-ci.git jjb: lttng-tools: Handle debug_rcu conf value Signed-off-by: Jonathan Rajotte --- diff --git a/scripts/lttng-tools/build.sh b/scripts/lttng-tools/build.sh index ad695d2..0a65418 100755 --- a/scripts/lttng-tools/build.sh +++ b/scripts/lttng-tools/build.sh @@ -227,6 +227,11 @@ relayd-only) CONF_OPTS="--disable-bin-lttng --disable-bin-lttng-consumerd --disable-bin-lttng-crash --disable-bin-lttng-sessiond --disable-extras --disable-man-pages $NO_UST" ;; +debug-rcu) + echo "Enable RCU sanity checks for debugging" + CPPFLAGS="${CPPFLAGS:-} -DDEBUG_RCU" + ;; + *) echo "Standard build" CONF_OPTS=""