Add --enable-build-man-pages to tools dist build
[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
19# Create build directory
20rm -rf $WORKSPACE/build
21mkdir -p $WORKSPACE/build
22
23PREFIX="$WORKSPACE/build"
24
25# Set platform variables
26case "$arch" in
27solaris10)
28 MAKE=gmake
29 TAR=gtar
30 NPROC=gnproc
31 BISON=bison
32 YACC="$BISON -y"
33 ;;
34solaris11)
35 MAKE=gmake
36 TAR=gtar
37 NPROC=nproc
38 BISON="/opt/csw/bin/bison"
39 YACC="$BISON -y"
40 export PATH="$PATH:/usr/perl5/bin"
41 ;;
42*)
43 MAKE=make
44 TAR=tar
45 NPROC=nproc
46 BISON=bison
47 YACC="$BISON -y"
48 ;;
49esac
50
51# Set configure options for each build configuration
52CONF_OPTS=""
53case "$conf" in
54static)
55 echo "Static build"
56 CONF_OPTS="--enable-static --disable-shared"
57 ;;
58python-bindings)
59 echo "Build with python bindings"
60 # We only support bindings built with Python 3
61 export PYTHON="python3"
62 export PYTHON_CONFIG="/usr/bin/python3-config"
63 CONF_OPTS="--enable-python-bindings"
64 ;;
65*)
66 echo "Standard build"
67 CONF_OPTS=""
68 ;;
69esac
70
71
72# Run bootstrap prior to configure
73./bootstrap
74
75
76# Build type
77# oot : out-of-tree build
78# dist: build via make dist
79# * : normal tree build
80#
81# Make sure to move to the build_path and configure
82# before continuing
83BUILD_PATH=$WORKSPACE
84TEST_PLAN_PATH=$WORKSPACE
85case "$build" in
86 oot)
87 echo "Out of tree build"
88 BUILD_PATH=$WORKSPACE/oot
89 mkdir -p $BUILD_PATH
90 cd $BUILD_PATH
91 MAKE=$MAKE BISON="$BISON" YACC="$YACC" $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS
92 ;;
93
94 dist)
95 echo "Distribution out of tree build"
96 BUILD_PATH=`mktemp -d`
97
98 # Initial configure and generate tarball
99 MAKE=$MAKE BISON="$BISON" YACC="$YACC" ./configure
100 $MAKE dist
101
102 mkdir -p $BUILD_PATH
103 cp *.tar.* $BUILD_PATH/
104 cd $BUILD_PATH
105
106 # Ignore level 1 of tar
107 $TAR xvf *.tar.* --strip 1
108
109 MAKE=$MAKE BISON="$BISON" YACC="$YACC" $BUILD_PATH/configure --prefix=$PREFIX $CONF_OPTS
110
111 # Set test plan to dist tar
112 TEST_PLAN_PATH=$BUILD_PATH
113 ;;
114
115*)
116 echo "Standard tree build"
117 MAKE=$MAKE BISON="$BISON" YACC="$YACC" $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS
118 ;;
119esac
120
121# BUILD!
122$MAKE -j `$NPROC` V=1
123$MAKE install
124
125# Run tests
126cd ./tests
127# Run make check tests
128prove --merge -v --exec '' - < $WORKSPACE/tests/tests
129cd ..
130
131$MAKE clean
132
133# Cleanup rpath in executables and shared libraries
134find $WORKSPACE/build/bin -type f -perm -0500 -exec chrpath --delete {} \;
135find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \;
136
137# Remove libtool .la files
138find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \;
139
140# Clean temp dir for dist build
141if [ "$build" = "dist" ]; then
142 cd $WORKSPACE
143 rm -rf $BUILD_PATH
144fi
145
146# EOF
This page took 0.036612 seconds and 4 git commands to generate.