-
Notifications
You must be signed in to change notification settings - Fork 853
/
build_common.sh
344 lines (318 loc) · 10.8 KB
/
build_common.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
#!/bin/sh -e
# The only purpose of the above shebang is to orient shellcheck right.
# To make CI scripts maintenance simpler, copies of this file in the
# libpcap, tcpdump and tcpslice git repositories should be identical.
# Please mind that Solaris /bin/sh before 11 does not support the $()
# command substitution syntax, hence the "-e SC2006" flag in Makefile.
# A poor man's mktemp(1) for OSes that don't have one (e.g. AIX 7, Solaris 9).
mktempdir_diy() {
while true; do
# /bin/sh implements $RANDOM in AIX 7, but not in Solaris before 11,
# thus use dd and od instead.
mktempdir_diy_suffix=`dd if=/dev/urandom bs=4 count=1 2>/dev/null | od -t x -A n | head -1 | tr -d '\t '`
[ -z "$mktempdir_diy_suffix" ] && return 1
mktempdir_diy_path="${TMPDIR:-/tmp}/${1:?}.${mktempdir_diy_suffix}"
# "test -e" would be more appropriate, but it is not available in
# Solaris /bin/sh before 11.
if [ ! -d "$mktempdir_diy_path" ]; then
mkdir "$mktempdir_diy_path"
chmod go= "$mktempdir_diy_path"
echo "$mktempdir_diy_path"
break
fi
# Try again (very unlikely, just in case).
done
}
mktempdir() {
mktempdir_prefix=${1:-tmp}
case `os_id` in
Darwin-*|FreeBSD-*|NetBSD-*)
# In these operating systems mktemp(1) always appends an implicit
# ".XXXXXXXX" suffix to the requested template when creating a
# temporary directory.
mktemp -d -t "$mktempdir_prefix"
;;
SunOS-5.10|SunOS-5.11)
# Although the suffix is optional, specify it for consistent results.
mktemp -d -t "${mktempdir_prefix}.XXXXXXXX"
;;
SunOS-*|AIX-*)
mktempdir_diy "$mktempdir_prefix"
;;
*)
# At least Haiku, Linux and OpenBSD implementations require explicit
# trailing X'es in the template, so make it the same suffix as above.
# XXX - is MSYS2 GNU-based, so that it would be like Linux?
mktemp -d -t "${mktempdir_prefix}.XXXXXXXX"
;;
esac
}
print_sysinfo() {
uname -a
printf 'OS identification: '
os_id
date
}
# Try to make the current C compiler print its version information (usually
# multi-line) to stdout.
cc_version_nocache() {
: "${CC:?}"
case `basename "$CC"` in
gcc*|egcc*|clang*|tcc*)
# GCC and Clang recognize --version, print to stdout and exit with 0.
"$CC" --version
;;
xl*)
# XL C 12.1 and 13.1 recognize "-qversion", print to stdout and exit
# with 0. XL C 12.1 on an unknown command-line flag displays its man
# page and waits.
# XL C 16.1 recognizes "-qversion" and "--version", prints to stdout
# and exits with 0. Community Edition also prints a banner to stderr.
"$CC" -qversion 2>/dev/null
;;
sun*)
# Sun compilers recognize -V, print to stderr and exit with an error.
"$CC" -V 2>&1 || :
;;
cc)
case `os_id` in
SunOS-*)
# Most likely Sun C.
"$CC" -V 2>&1 || :
;;
Darwin-*)
# Most likely Clang.
"$CC" --version
;;
Linux-*|FreeBSD-*|NetBSD-*|OpenBSD-*)
# Most likely Clang or GCC.
"$CC" --version
;;
esac
;;
cl)
# Visual Studio's compiler doesn't have a "print the compiler
# version" option, but we can get version information by
# running it with no options, sending its standard error to
# the standard output, and throwing out the usage message;
# as we have MSYS2, we can just "head" it out.
#
# XXX - does it exit with an error?
"$CC" 2>&1 | head -2
;;
*)
"$CC" --version || "$CC" -V || :
;;
esac
}
cc_version() {
echo "${cc_version_cached:=`cc_version_nocache`}"
}
print_cc_version() {
cc_version
printf 'Compiler identification: '
cc_id
}
# For the current C compiler try to print a short and uniform identification
# string (such as "gcc-9.3.0") that is convenient to use in a case statement.
cc_id_nocache() {
cc_id_firstline=`cc_version | head -1`
: "${cc_id_firstline:?}"
cc_id_guessed=`echo "$cc_id_firstline" | sed 's/^.*clang version \([0-9\.]*\).*$/clang-\1/'`
if [ "$cc_id_firstline" != "$cc_id_guessed" ]; then
echo "$cc_id_guessed"
return
fi
cc_id_guessed=`echo "$cc_id_firstline" | sed 's/^IBM XL C.*, V\([0-9\.]*\).*$/xlc-\1/'`
if [ "$cc_id_firstline" != "$cc_id_guessed" ]; then
echo "$cc_id_guessed"
return
fi
cc_id_guessed=`echo "$cc_id_firstline" | sed 's/^.* Sun C \([0-9\.]*\) .*$/suncc-\1/'`
if [ "$cc_id_firstline" != "$cc_id_guessed" ]; then
echo "$cc_id_guessed"
return
fi
cc_id_guessed=`echo "$cc_id_firstline" | sed 's/^Microsoft (R) C\/C++ Optimizing Compiler Version \([0-9\.]*\) .*$/msvc-\1/'`
if [ "$cc_id_firstline" != "$cc_id_guessed" ]; then
echo "$cc_id_guessed"
return
fi
# Examples of installed packages:
# "tcc version 0.9.27 (x86_64 Linux)"
# "tcc version 0.9.27 2023-07-05 mob@5b28165 (x86_64 OpenBSD)"
# Example of a development version:
# "tcc version 0.9.28rc 2024-04-28 mob@0aca8611 (x86_64 Linux)"
cc_id_guessed=`echo "$cc_id_firstline" | sed 's/^.*tcc version \([0-9\.rc]*\).*$/tcc-\1/'`
if [ "$cc_id_firstline" != "$cc_id_guessed" ]; then
echo "$cc_id_guessed"
return
fi
# OpenBSD default GCC:
# "gcc (GCC) 4.2.1 20070719"
# RedHat GCC:
# "gcc (GCC) 8.3.1 20190223 (Red Hat 8.3.1-2)"
# "gcc (GCC) 10.3.1 20210422 (Red Hat 10.3.1-1)"
# other GCC packages:
# "sparc-sun-solaris2.9-gcc (GCC) 4.2.0 (gccfss)"
# "gcc (GCC) 5.5.0"
# "gcc (nb4 20200810) 7.5.0"
# "gcc (OpenIndiana 7.5.0-il-0) 7.5.0"
# "gcc (Debian 8.3.0-6) 8.3.0"
# "gcc (Raspbian 8.3.0-6+rpi1) 8.3.0"
# "egcc (GCC) 8.4.0"
# "gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0"
# "gcc (FreeBSD Ports Collection) 10.3.0"
cc_id_guessed=`echo "$cc_id_firstline" | sed 's/^.* (.*) \([0-9\.]*\).*$/gcc-\1/'`
if [ "$cc_id_firstline" != "$cc_id_guessed" ]; then
echo "$cc_id_guessed"
return
fi
}
cc_id() {
echo "${cc_id_cached:=`cc_id_nocache`}"
}
# Call this function each time CC has changed.
discard_cc_cache() {
cc_version_cached=
cc_id_cached=
}
# For the current C compiler try to print CFLAGS value that tells to treat
# warnings as errors.
cc_werr_cflags() {
case `cc_id` in
gcc-*|clang-*|tcc-*)
echo '-Werror'
;;
xlc-*)
# XL C 12.1 and 13.1 recognize "-qhalt=w". XL C 16.1 recognizes that
# and "-Werror".
echo '-qhalt=w'
;;
suncc-*)
# GCC and Clang print an identification for every warning, which is
# useful for root cause analysis and bug fixing. Sun C does not do it
# by default, but an additional option makes the style more consistent.
echo '-errwarn=%all -errtags=yes'
;;
msvc-*)
# XXX - what?
echo ''
;;
esac
}
# Tell whether "gcc" is a symlink to Clang (this is the case on macOS).
gcc_is_clang_in_disguise() {
case `cc_id`/`basename "${CC:?}"` in
clang-*/gcc)
return 0
;;
esac
return 1
}
os_id() {
# OS does not change between builds or in the middle of a build, so it is
# fine to cache uname output.
: "${os_id_sysname:=`uname -s`}"
printf '%s-' "$os_id_sysname"
: "${os_id_release:=`uname -r`}"
case "$os_id_sysname" in
AIX)
: "${os_id_version:=`uname -v`}"
echo "${os_id_version}.${os_id_release}"
;;
Darwin|GNU|OpenBSD|SunOS)
echo "$os_id_release"
;;
FreeBSD|NetBSD|Linux)
# Meaningful version is usually the substring before the first dash.
# Or the first underscore.
echo "$os_id_release" | sed 's/^\([0-9\.]*\).*$/\1/'
;;
Haiku)
# The complete version is a substring before the first space, e.g.:
# * "hrevNNNNN" for a release without updates, e.g. hrev56578 for
# R1/beta4, also for a clean build of master branch;
# * "hrevNNNNN+MM" for a release with updates;
# * "hrevNNNNN-MM" for a build of a branch that is ahead of the master
# branch;
# * "hrevNNNNN_MMMM_KK" for a CI build of a Gerrit review;
# * something else for a build of a working copy with the changes not
# yet committed.
# With this system it is not clear which version components would be
# meaningful to relate with the build result, so let's return the
# complete version and leave any interpretation to the user.
: "${os_id_version:=`uname -v`}"
echo "$os_id_version" | sed -E 's/^(hrev[^ ]+).+$/\1/'
;;
MSYS*)
# uname -s produces "MSYS_NT-{NT version?}-{build?}
# uname -r produces MSYS2 version?
echo "$os_id_version", MSYS "$os_id_release"
;;
*)
echo 'UNKNOWN'
;;
esac
}
increment() {
# No arithmetic expansion in Solaris /bin/sh before 11.
# shellcheck disable=SC2003
expr "${1:?}" + 1
}
# Display text in magenta.
echo_magenta() {
# ANSI magenta, the imploded text, ANSI reset, newline.
printf '\033[35;1m%s\033[0m\n' "$*"
}
# Run a command after displaying it.
run_after_echo() {
: "${1:?}" # Require at least one argument.
printf '$ %s\n' "$*"
"$@"
}
print_so_deps() {
case `os_id` in
Darwin-*)
run_after_echo otool -L "${1:?}"
;;
Haiku-*)
run_after_echo objdump -p "${1:?}"
;;
MSYS*)
run_after_echo dumpbin /dependents "${1:?}"
;;
*)
run_after_echo ldd "${1:?}"
;;
esac
}
# Beware that setting MATRIX_DEBUG for tcpdump or tcpslice will produce A LOT
# of additional output there and in any nested libpcap builds. Multiplied by
# the matrix size, the full output log size might exceed limits of some CI
# systems (as it had previously happened with Travis CI). Use with caution on
# a reduced matrix.
handle_matrix_debug() {
[ "$MATRIX_DEBUG" != yes ] && return
echo '$ cat Makefile [...]'
sed '/^# DO NOT DELETE THIS LINE -- mkdep uses it.$/q' <Makefile
run_after_echo cat config.h
[ "$CMAKE" = yes ] || run_after_echo cat config.log
}
purge_directory() {
if [ "`os_id`" = SunOS-5.11 ]; then
# In Solaris 11 /bin/sh the pathname expansion of "*" always includes
# "." and "..", so the straightforward rm would always fail.
(
cd "${1:?}"
for pd_each in *; do
if [ "$pd_each" != . ] && [ "$pd_each" != .. ]; then
rm -rf "$pd_each"
fi
done
)
else
rm -rf "${1:?}"/*
fi
}
# vi: set tabstop=4 softtabstop=0 expandtab shiftwidth=4 smarttab autoindent :