blob: 153a20cef15a28e8e50eb0107b502dd902070dd4 (
plain)
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
|
#!/usr/bin/env bash
set -e
# Ensure variables from the config aren't set before the config is read to
# avoid capturing transient state
unset CC CFLAGS CPPFLAGS LDFLAGS LDLIBS colour debug optimise verbose warn werror
CFLAGS=(-std=c11 -fPIC)
warnings=(
-Wall -Wcast-align -Wcast-qual -Wextra -Wpedantic -Wformat=2
-Winit-self -Wmissing-prototypes -Wpointer-arith -Wshadow
-Wstrict-prototypes -Wsuggest-attribute=format
-Wsuggest-attribute=noreturn
)
declare -a CFLAGS CPPFLAGS LDFLAGS LDLIBS
if [ -e config.rc ]; then
redo-ifchange config.rc
. ./config.rc
else
redo-ifcreate config.rc
fi
check() {
what=$1
shift
for p do
if command -v "$p" >/dev/null 2>&1; then
echo "$p"
return
fi
done
echo "$what not set or found" >&2
return 1
}
CC=$(check '$CC, cc, gcc or clang' "$CC" cc gcc clang) || exit
if [[ $colour ]]; then
if [[ $colour != 1 ]]; then no=no-; fi
CFLAGS+=("-f${no}diagnostics-color")
LDFLAGS+=("-f${no}diagnostics-color")
fi
if [[ $debug ]]; then
CFLAGS+=(-Og -g)
LDFLAGS+=(-Og -g)
fi
if [[ $optimise ]]; then
CFLAGS+=(-O2 -flto)
LDFLAGS+=(-O2 -flto)
fi
if [[ $warn ]]; then
CFLAGS+=("${warnings[@]}")
fi
if [[ $werror ]]; then
CFLAGS+=(-Werror)
fi
{
echo "# generated by $0"
declare -p CC CFLAGS CPPFLAGS LDFLAGS LDLIBS
} >"$3"
if [[ $verbose ]]; then
echo "# Configuration regenerated:" >&2
cat "$3" >&2
fi
|