X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=scripts%2Flttng-ust%2Fbuild.sh;h=8c6e47c9a6012c6bd135079a85a7a414576e8562;hb=f3b83c62c9dba5dd7906743638e02a410b742040;hp=ccb3683bdb4d4a798bf5c352c5abb5a95867def7;hpb=89b9225ee8fb4437b08377c8c9942c6ea574c214;p=lttng-ci.git diff --git a/scripts/lttng-ust/build.sh b/scripts/lttng-ust/build.sh index ccb3683..8c6e47c 100755 --- a/scripts/lttng-ust/build.sh +++ b/scripts/lttng-ust/build.sh @@ -16,6 +16,11 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +# Required parameters +arch=${arch:-} +conf=${conf:-} +build=${build:-} + # liburcu URCU_INCS="$WORKSPACE/deps/liburcu/build/include/" @@ -30,6 +35,7 @@ rm -rf "$PREFIX" "$TMPDIR" mkdir -p "$PREFIX" "$TMPDIR" export TMPDIR +export CFLAGS="-g -O2" # Set platform variables case "$arch" in @@ -37,17 +43,19 @@ case "$arch" in MAKE=make TAR=tar NPROC=nproc - BISON="bison" - YACC="$BISON -y" - CFLAGS="" + #BISON="bison" + #YACC="$BISON -y" + #CFLAGS="" ;; esac -# Export build flags -export CPPFLAGS="-I$URCU_INCS" -export LDFLAGS="-L$URCU_LIBS" +# Export time env. variables flags export LD_LIBRARY_PATH="$URCU_LIBS:${LD_LIBRARY_PATH:-}" +# Define flags +CPPFLAGS="-I$URCU_INCS" +LDFLAGS="-L$URCU_LIBS" + # Set configure options for each build configuration CONF_OPTS="" @@ -58,15 +66,18 @@ static) CONF_OPTS="--enable-static --disable-shared" ;; -java-agent) - echo "Java agent build" +agents) + echo "Enable Java agent build" export CLASSPATH="/usr/share/java/log4j-1.2.jar" - CONF_OPTS="--enable-java-agent-all" + CONF_OPTS+=" --enable-java-agent-all --enable-jni-interface" + + echo "Enable Python agent build" + CONF_OPTS+=" --enable-python-agent" ;; -python-agent) - echo "Python agent build" - CONF_OPTS="--enable-python-agent" +debug-rcu) + echo "Enable RCU sanity checks for debugging" + CPPFLAGS="${CPPFLAGS:-} -DDEBUG_RCU" ;; *) @@ -83,9 +94,10 @@ cd "$SRCDIR" # Build type -# oot : out-of-tree build -# dist: build via make dist -# * : normal tree build +# oot : out-of-tree build +# dist : build via make dist +# oot-dist: build via make dist out-of-tree +# * : normal tree build # # Make sure to move to the build_path and configure # before continuing @@ -94,41 +106,66 @@ case "$build" in oot) echo "Out of tree build" BUILD_PATH=$WORKSPACE/oot + mkdir -p "$BUILD_PATH" cd "$BUILD_PATH" - "$SRCDIR/configure" --prefix="$PREFIX" $CONF_OPTS + + CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$SRCDIR/configure" --prefix="$PREFIX" $CONF_OPTS ;; dist) - echo "Distribution out of tree build" - BUILD_PATH="`mktemp -d`" + echo "Distribution tarball in-tree build" # Initial configure and generate tarball - "$SRCDIR/configure" + CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$SRCDIR/configure" $MAKE dist - mkdir -p "$BUILD_PATH" + BUILD_PATH="$(mktemp -d)" cp ./*.tar.* "$BUILD_PATH/" cd "$BUILD_PATH" # Ignore level 1 of tar $TAR xvf ./*.tar.* --strip 1 - "$BUILD_PATH/configure" --prefix="$PREFIX" $CONF_OPTS + # Build in extracted source tree + CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$BUILD_PATH/configure" --prefix="$PREFIX" $CONF_OPTS + ;; + +oot-dist) + echo "Distribution tarball out of tree build" + BUILD_PATH="$(mktemp -d)" + cd "$BUILD_PATH" + + # Initial configure and generate tarball + CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$SRCDIR/configure" + $MAKE dist + + NEWSRC_PATH="$(mktemp -d)" + cp ./*.tar.* "$NEWSRC_PATH/" + cd "$NEWSRC_PATH" + + # Ignore level 1 of tar + $TAR xvf ./*.tar.* --strip 1 + + BUILD_PATH="$(mktemp -d)" + cd "$BUILD_PATH" + + # Build oot from extracted sources + CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$NEWSRC_PATH/configure" --prefix="$PREFIX" $CONF_OPTS ;; *) echo "Standard in-tree build" - "$BUILD_PATH/configure" --prefix="$PREFIX" $CONF_OPTS + CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$BUILD_PATH/configure" --prefix="$PREFIX" $CONF_OPTS ;; esac # BUILD! -$MAKE -j "`$NPROC`" V=1 +$MAKE -j "$($NPROC)" V=1 $MAKE install # Run tests -$MAKE check +$MAKE --keep-going check # Copy tap logs for the jenkins tap parser rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$WORKSPACE/tap"