Babeltrace: checkout sources in a subdirectory
[lttng-ci.git] / scripts / babeltrace / build.sh
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 SRCDIR="$WORKSPACE/src/babeltrace"
20 TMPDIR="$WORKSPACE/tmp"
21 PREFIX="$WORKSPACE/build"
22
23 # Create build and tmp directories
24 rm -rf "$PREFIX" "$TMPDIR"
25 mkdir -p "$PREFIX" "$TMPDIR"
26
27 # Set platform variables
28 case "$arch" in
29 solaris10)
30 MAKE=gmake
31 TAR=gtar
32 NPROC=gnproc
33 BISON=bison
34 YACC="$BISON -y"
35 ;;
36 solaris11)
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 ;;
44 macosx)
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 ;;
61 esac
62
63 # Set configure options for each build configuration
64 CONF_OPTS=""
65 case "$conf" in
66 static)
67 echo "Static build"
68 CONF_OPTS="--enable-static --disable-shared"
69 ;;
70 python-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 ;;
81 esac
82
83 # Enter the source directory
84 cd "$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
97 BUILD_PATH="$SRCDIR"
98 case "$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 ;;
135 esac
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
145 rsync -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
151 find $PREFIX/bin -type f -perm -0500 -exec chrpath --delete {} \;
152 find $PREFIX/lib -name "*.so" -exec chrpath --delete {} \;
153
154 # Remove libtool .la files
155 find $PREFIX/lib -name "*.la" -exec rm -f {} \;
156
157 # Clean temp dir for dist build
158 if [ "$build" = "dist" ]; then
159 cd $SRCDIR
160 rm -rf $BUILD_PATH
161 fi
162
163 # EOF
This page took 0.063676 seconds and 5 git commands to generate.