Merge pull request #21 from frdeso/kprobe_fuzzing_pr
[lttng-ci.git] / scripts / lttng-ust / build.sh
... / ...
CommitLineData
1#!/bin/bash -exu
2#
3# Copyright (C) 2015, Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
4# 2016, Michael Jeanson <mjeanson@efficios.com>
5#
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19# Required parameters
20arch=${arch:-}
21conf=${conf:-}
22build=${build:-}
23
24
25# liburcu
26URCU_INCS="$WORKSPACE/deps/liburcu/build/include/"
27URCU_LIBS="$WORKSPACE/deps/liburcu/build/lib/"
28
29SRCDIR="$WORKSPACE/src/lttng-ust"
30TMPDIR="$WORKSPACE/tmp"
31PREFIX="$WORKSPACE/build"
32
33# Create build and tmp directories
34rm -rf "$PREFIX" "$TMPDIR"
35mkdir -p "$PREFIX" "$TMPDIR"
36
37export TMPDIR
38
39# Set platform variables
40case "$arch" in
41*)
42 MAKE=make
43 TAR=tar
44 NPROC=nproc
45 #BISON="bison"
46 #YACC="$BISON -y"
47 #CFLAGS=""
48 ;;
49esac
50
51# Export time env. variables flags
52export LD_LIBRARY_PATH="$URCU_LIBS:${LD_LIBRARY_PATH:-}"
53
54# Define flags
55CPPFLAGS="-I$URCU_INCS"
56LDFLAGS="-L$URCU_LIBS"
57
58
59# Set configure options for each build configuration
60CONF_OPTS=""
61case "$conf" in
62static)
63 # Unsupported! liblttng-ust can't pull in it's static (.a) dependencies.
64 echo "Static build"
65 CONF_OPTS="--enable-static --disable-shared"
66 ;;
67
68agents)
69 echo "Enable Java agent build"
70 export CLASSPATH="/usr/share/java/log4j-1.2.jar"
71 CONF_OPTS+=" --enable-java-agent-all --enable-jni-interface"
72
73 echo "Enable Python agent build"
74 CONF_OPTS+=" --enable-python-agent"
75 ;;
76
77debug-rcu)
78 echo "Enable RCU sanity checks for debugging"
79 CPPFLAGS="${CPPFLAGS:-} -DDEBUG_RCU"
80 ;;
81
82*)
83 echo "Standard build"
84 CONF_OPTS=""
85 ;;
86esac
87
88# Enter the source directory
89cd "$SRCDIR"
90
91# Run bootstrap in the source directory prior to configure
92./bootstrap
93
94
95# Build type
96# oot : out-of-tree build
97# dist : build via make dist
98# oot-dist: build via make dist out-of-tree
99# * : normal tree build
100#
101# Make sure to move to the build_path and configure
102# before continuing
103BUILD_PATH=$SRCDIR
104case "$build" in
105oot)
106 echo "Out of tree build"
107 BUILD_PATH=$WORKSPACE/oot
108
109 mkdir -p "$BUILD_PATH"
110 cd "$BUILD_PATH"
111
112 CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$SRCDIR/configure" --prefix="$PREFIX" $CONF_OPTS
113 ;;
114
115dist)
116 echo "Distribution tarball in-tree build"
117
118 # Initial configure and generate tarball
119 CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$SRCDIR/configure"
120 $MAKE dist
121
122 BUILD_PATH="$(mktemp -d)"
123 cp ./*.tar.* "$BUILD_PATH/"
124 cd "$BUILD_PATH"
125
126 # Ignore level 1 of tar
127 $TAR xvf ./*.tar.* --strip 1
128
129 # Build in extracted source tree
130 CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$BUILD_PATH/configure" --prefix="$PREFIX" $CONF_OPTS
131 ;;
132
133oot-dist)
134 echo "Distribution tarball out of tree build"
135 BUILD_PATH="$(mktemp -d)"
136 cd "$BUILD_PATH"
137
138 # Initial configure and generate tarball
139 CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$SRCDIR/configure"
140 $MAKE dist
141
142 NEWSRC_PATH="$(mktemp -d)"
143 cp ./*.tar.* "$NEWSRC_PATH/"
144 cd "$NEWSRC_PATH"
145
146 # Ignore level 1 of tar
147 $TAR xvf ./*.tar.* --strip 1
148
149 BUILD_PATH="$(mktemp -d)"
150 cd "$BUILD_PATH"
151
152 # Build oot from extracted sources
153 CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$NEWSRC_PATH/configure" --prefix="$PREFIX" $CONF_OPTS
154 ;;
155
156*)
157 echo "Standard in-tree build"
158 CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" "$BUILD_PATH/configure" --prefix="$PREFIX" $CONF_OPTS
159 ;;
160esac
161
162# BUILD!
163$MAKE -j "$($NPROC)" V=1
164$MAKE install
165
166# Run tests
167$MAKE check
168
169# Copy tap logs for the jenkins tap parser
170rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$WORKSPACE/tap"
171
172# Clean the build directory
173$MAKE clean
174
175# Cleanup rpath in executables and shared libraries
176find "$PREFIX/lib" -name "*.so" -exec chrpath --delete {} \;
177
178# Remove libtool .la files
179find "$PREFIX/lib" -name "*.la" -exec rm -f {} \;
180
181# Clean temp dir for dist build
182if [ "$build" = "dist" ]; then
183 cd "$SRCDIR"
184 rm -rf "$BUILD_PATH"
185fi
186
187# EOF
This page took 0.022561 seconds and 4 git commands to generate.