From ca3a3f3d63025e30461671f61d3b108fb7ae021e Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Julien Date: Mon, 12 Jan 2015 16:50:40 -0500 Subject: [PATCH] build stable 2.1 --- lttng-ust/lttng-ust-stable-2.1.sh | 59 +++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100755 lttng-ust/lttng-ust-stable-2.1.sh diff --git a/lttng-ust/lttng-ust-stable-2.1.sh b/lttng-ust/lttng-ust-stable-2.1.sh new file mode 100755 index 0000000..3d52a49 --- /dev/null +++ b/lttng-ust/lttng-ust-stable-2.1.sh @@ -0,0 +1,59 @@ +# Create build directory +rm -rf $WORKSPACE/build +mkdir -p $WORKSPACE/build + +# liburcu +URCU_INCS="$WORKSPACE/dependencies/liburcu/build/include/" +URCU_LIBS="$WORKSPACE/dependencies/liburcu/build/lib/" + +export CPPFLAGS="-I$URCU_INCS" +export LDFLAGS="-L$URCU_LIBS" +export LD_LIBRARY_PATH="$URCU_LIBS:$LD_LIBRARY_PATH" + +PREFIX="$WORKSPACE/build" + +./bootstrap + +CONF_OPTS="" + +case "$conf" in +# Unsupported! liblttng-ust can't pull in it's static (.a) dependencies. +#static) +# echo "Static build" +# CONF_OPTS="--enable-static --disable-shared" +# ;; +java-agent) + echo "Java agent build" + export CLASSPATH="/usr/share/java/log4j-1.2.jar" + CONF_OPTS="--enable-java-agent-all" + ;; +*) + echo "Standard build" + CONF_OPTS="" + ;; +esac + +./configure --prefix=$PREFIX $CONF_OPTS +make V=1 +make install + +# Run tests +rm -rf $WORKSPACE/tap +mkdir -p $WORKSPACE/tap/unit + +cd $WORKSPACE/tests + +prove --merge --exec '' - < $WORKSPACE/tests/unit_tests --archive $WORKSPACE/tap/unit/ || true + +# TAP plugin is having a hard time with .yml files. +rm -f $WORKSPACE/tap/unit/meta.yml + +# And also with files without extension, so rename all result to *.tap +find $WORKSPACE/tap/unit/ -type f -exec mv {} {}.tap \; + +# Cleanup +make clean + +# Cleanup rpath and libtool .la files +find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \; +find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \; -- 2.34.1