babeltrace: Add stable-1.4 branch
[lttng-ci.git] / scripts / babeltrace / build.sh
... / ...
CommitLineData
1#!/bin/bash -exu
2#
3# Copyright (C) 2015 - Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
4#
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18
19SRCDIR="$WORKSPACE/src/babeltrace"
20TMPDIR="$WORKSPACE/tmp"
21PREFIX="$WORKSPACE/build"
22
23# Create build and tmp directories
24rm -rf "$PREFIX" "$TMPDIR"
25mkdir -p "$PREFIX" "$TMPDIR"
26
27# Set platform variables
28case "$arch" in
29solaris10)
30 MAKE=gmake
31 TAR=gtar
32 NPROC=gnproc
33 BISON=bison
34 YACC="$BISON -y"
35 ;;
36solaris11)
37 MAKE=gmake
38 TAR=gtar
39 NPROC=nproc
40 BISON="/opt/csw/bin/bison"
41 YACC="$BISON -y"
42 export PATH="$PATH:/usr/perl5/bin"
43 ;;
44macosx)
45 MAKE=make
46 TAR=tar
47 NPROC="getconf _NPROCESSORS_ONLN"
48 BISON="bison"
49 YACC="$BISON -y"
50 export PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
51 export CFLAGS="-I/opt/local/include"
52 export LDFLAGS="-L/opt/local/lib"
53 ;;
54*)
55 MAKE=make
56 TAR=tar
57 NPROC=nproc
58 BISON=bison
59 YACC="$BISON -y"
60 ;;
61esac
62
63# Set configure options for each build configuration
64CONF_OPTS=""
65case "$conf" in
66static)
67 echo "Static build"
68 CONF_OPTS="--enable-static --disable-shared"
69 ;;
70python-bindings)
71 echo "Build with python bindings"
72 # We only support bindings built with Python 3
73 export PYTHON="python3"
74 export PYTHON_CONFIG="/usr/bin/python3-config"
75 CONF_OPTS="--enable-python-bindings"
76 ;;
77*)
78 echo "Standard build"
79 CONF_OPTS=""
80 ;;
81esac
82
83# Enter the source directory
84cd "$SRCDIR"
85
86# Run bootstrap in the source directory prior to configure
87./bootstrap
88
89
90# Build type
91# oot : out-of-tree build
92# dist: build via make dist
93# * : normal tree build
94#
95# Make sure to move to the build_path and configure
96# before continuing
97BUILD_PATH="$SRCDIR"
98case "$build" in
99 oot)
100 echo "Out of tree build"
101 BUILD_PATH=$WORKSPACE/oot
102 mkdir -p $BUILD_PATH
103 cd $BUILD_PATH
104 MAKE=$MAKE BISON="$BISON" YACC="$YACC" "$SRCDIR/configure" --prefix=$PREFIX $CONF_OPTS
105 ;;
106
107 dist)
108 echo "Distribution out of tree build"
109 BUILD_PATH=`mktemp -d`
110
111 # Initial configure and generate tarball
112 MAKE=$MAKE BISON="$BISON" YACC="$YACC" "$SRCDIR/configure"
113 $MAKE dist
114
115 mkdir -p $BUILD_PATH
116 cp *.tar.* $BUILD_PATH/
117 cd $BUILD_PATH
118
119 # Ignore level 1 of tar
120 $TAR xvf *.tar.* --strip 1
121
122 MAKE=$MAKE BISON="$BISON" YACC="$YACC" $BUILD_PATH/configure --prefix=$PREFIX $CONF_OPTS
123 ;;
124
125 clang)
126 echo "LLVM clang build"
127 export CC=clang
128 clang -v
129 MAKE=$MAKE BISON="$BISON" YACC="$YACC" "$SRCDIR/configure" --prefix=$PREFIX $CONF_OPTS
130 ;;
131 *)
132 echo "Standard in-tree build"
133 MAKE=$MAKE BISON="$BISON" YACC="$YACC" "$SRCDIR/configure" --prefix=$PREFIX $CONF_OPTS
134 ;;
135esac
136
137# BUILD!
138$MAKE -j `$NPROC` V=1
139$MAKE install
140
141# Run tests
142$MAKE check
143
144# Copy tap logs for the jenkins tap parser
145rsync -a --exclude 'test-suite.log' --include '*/' --include '*.log' --exclude='*' tests/ "$WORKSPACE/tap"
146
147# Clean the build directory
148$MAKE clean
149
150# Cleanup rpath in executables and shared libraries
151find $PREFIX/bin -type f -perm -0500 -exec chrpath --delete {} \;
152find $PREFIX/lib -name "*.so" -exec chrpath --delete {} \;
153
154# Remove libtool .la files
155find $PREFIX/lib -name "*.la" -exec rm -f {} \;
156
157# Clean temp dir for dist build
158if [ "$build" = "dist" ]; then
159 cd $SRCDIR
160 rm -rf $BUILD_PATH
161fi
162
163# EOF
This page took 0.024985 seconds and 4 git commands to generate.