8a699ea92bcd4691d37c1b68abd45b328fbb50dc
[lttng-ci.git] / scripts / liburcu / build.sh
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 # Version compare functions
20 vercomp () {
21 set +u
22 if [[ "$1" == "$2" ]]; then
23 return 0
24 fi
25 local IFS=.
26 local i ver1=($1) ver2=($2)
27 # fill empty fields in ver1 with zeros
28 for ((i=${#ver1[@]}; i<${#ver2[@]}; i++)); do
29 ver1[i]=0
30 done
31 for ((i=0; i<${#ver1[@]}; i++)); do
32 if [[ -z ${ver2[i]} ]]; then
33 # fill empty fields in ver2 with zeros
34 ver2[i]=0
35 fi
36 if ((10#${ver1[i]} > 10#${ver2[i]})); then
37 return 1
38 fi
39 if ((10#${ver1[i]} < 10#${ver2[i]})); then
40 return 2
41 fi
42 done
43 set -u
44 return 0
45 }
46
47 verlte() {
48 vercomp "$1" "$2"; local res="$?"
49 [ "$res" -eq "0" ] || [ "$res" -eq "2" ]
50 }
51
52 verlt() {
53 vercomp "$1" "$2"; local res="$?"
54 [ "$res" -eq "2" ]
55 }
56
57 vergte() {
58 vercomp "$1" "$2"; local res="$?"
59 [ "$res" -eq "0" ] || [ "$res" -eq "1" ]
60 }
61
62 vergt() {
63 vercomp "$1" "$2"; local res="$?"
64 [ "$res" -eq "1" ]
65 }
66
67 verne() {
68 vercomp "$1" "$2"; local res="$?"
69 [ "$res" -ne "0" ]
70 }
71
72
73 SRCDIR="$WORKSPACE/src/liburcu"
74 TMPDIR="$WORKSPACE/tmp"
75 PREFIX="$WORKSPACE/build"
76
77 # Create build and tmp directories
78 rm -rf "$PREFIX" "$TMPDIR"
79 mkdir -p "$PREFIX" "$TMPDIR"
80
81 export TMPDIR
82
83 # Set platform variables
84 case "$arch" in
85 solaris10)
86 MAKE=gmake
87 TAR=gtar
88 NPROC=gnproc
89 CFLAGS="-D_XOPEN_SOURCE=1 -D_XOPEN_SOURCE_EXTENDED=1 -D__EXTENSIONS__=1"
90 ;;
91
92 solaris11)
93 MAKE=gmake
94 TAR=gtar
95 NPROC=nproc
96 CFLAGS="-D_XOPEN_SOURCE=1 -D_XOPEN_SOURCE_EXTENDED=1 -D__EXTENSIONS__=1"
97 export PATH="$PATH:/usr/perl5/bin"
98 ;;
99
100 macosx)
101 MAKE=make
102 TAR=tar
103 NPROC="getconf _NPROCESSORS_ONLN"
104 BISON="bison"
105 YACC="$BISON -y"
106 export PATH="/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
107 export CFLAGS="-I/opt/local/include"
108 export LDFLAGS="-L/opt/local/lib"
109 ;;
110
111 *)
112 MAKE=make
113 TAR=tar
114 NPROC=nproc
115 CFLAGS=""
116 ;;
117 esac
118
119 # Set configure options for each build configuration
120 CONF_OPTS=""
121 case "$conf" in
122 static)
123 echo "Static build"
124 CONF_OPTS="--enable-static --disable-shared"
125 ;;
126
127 tls_fallback)
128 echo "Using pthread_getspecific() to emulate TLS"
129 CONF_OPTS="--disable-compiler-tls"
130 ;;
131
132 *)
133 echo "Standard build"
134 CONF_OPTS=""
135 ;;
136 esac
137
138
139 # Enter the source directory
140 cd "$SRCDIR"
141
142 # Run bootstrap in the source directory prior to configure
143 ./bootstrap
144
145 # Get source version from configure script
146 eval `grep '^PACKAGE_VERSION=' ./configure`
147
148
149 # Build type
150 # oot : out-of-tree build
151 # dist: build via make dist
152 # * : normal tree build
153 #
154 # Make sure to move to the build_path and configure
155 # before continuing
156 BUILD_PATH=$SRCDIR
157 case "$build" in
158 oot)
159 echo "Out of tree build"
160 BUILD_PATH=$WORKSPACE/oot
161 mkdir -p "$BUILD_PATH"
162 cd "$BUILD_PATH"
163 MAKE=$MAKE CFLAGS="$CFLAGS" "$SRCDIR/configure" --prefix="$PREFIX" $CONF_OPTS
164 ;;
165
166 dist)
167 echo "Distribution out of tree build"
168 BUILD_PATH=`mktemp -d`
169
170 # Initial configure and generate tarball
171 MAKE=$MAKE "$SRCDIR/configure"
172 $MAKE dist
173
174 mkdir -p "$BUILD_PATH"
175 cp ./*.tar.* "$BUILD_PATH/"
176 cd "$BUILD_PATH"
177
178 # Ignore level 1 of tar
179 $TAR xvf ./*.tar.* --strip 1
180
181 MAKE=$MAKE CFLAGS="$CFLAGS" "$BUILD_PATH/configure" --prefix="$PREFIX" $CONF_OPTS
182 ;;
183 *)
184 echo "Standard in-tree build"
185 MAKE=$MAKE CFLAGS="$CFLAGS" "$BUILD_PATH/configure" --prefix="$PREFIX" $CONF_OPTS
186 ;;
187 esac
188
189 # BUILD!
190 $MAKE -j `$NPROC` V=1
191 $MAKE install
192
193 # Run tests
194 $MAKE check
195 # Only run regtest for 0.9 and up
196 if vergte "$PACKAGE_VERSION" "0.9"; then
197 $MAKE regtest
198 fi
199
200 # Cleanup
201 $MAKE clean
202
203 # Cleanup rpath in executables and shared libraries
204 #find $WORKSPACE/build/bin -type f -perm -0500 -exec chrpath --delete {} \;
205 find "$PREFIX/lib" -name "*.so" -exec chrpath --delete {} \;
206
207 # Remove libtool .la files
208 find "$PREFIX/lib" -name "*.la" -exec rm -f {} \;
209
210 # Cleanup temp directory of dist build
211 if [ "$build" = "dist" ]; then
212 cd "$SRCDIR"
213 rm -rf "$BUILD_PATH"
214 fi
215
216 # EOF
This page took 0.033902 seconds and 3 git commands to generate.