-
Notifications
You must be signed in to change notification settings - Fork 0
/
do_autogen.sh
executable file
·130 lines (112 loc) · 3.7 KB
/
do_autogen.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
#!/bin/bash
usage() {
cat <<EOF
do_autogen.sh: make a ceph build by running autogen, etc.
-C <parameter> add parameters to configure
-c use cryptopp
-d <level> debug build
level 0: no debug
level 1: -g
level 3: -Wextra
level 4: even more...
-e <path> dump encoded objects to <path>
-h this help message
-j with java
-J --with-jemalloc
-L --without-lttng
-O <level> optimize
-p google profiler
-P profiling build
-R without rocksdb
-T --without-tcmalloc
-v verbose output
EOF
}
die() {
echo $@
exit 1
}
debug_level=0
verbose=0
profile=0
rocksdb=1
CONFIGURE_FLAGS="--disable-static --with-lttng"
while getopts "C:cd:e:hjJLO:pPRTv" flag
do
case $flag in
C) CONFIGURE_FLAGS="$CONFIGURE_FLAGS $OPTARG";;
c) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --with-cryptopp --without-nss";;
d) debug_level=$OPTARG;;
e) encode_dump=$OPTARG;;
h) usage ; exit 0;;
j) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --enable-cephfs-java";;
J) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --with-jemalloc";;
L) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --without-lttng";;
O) CFLAGS="${CFLAGS} -O$OPTARG";;
p) with_profiler="--with-profiler" ;;
P) profile=1;;
R) rocksdb=0;;
T) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --without-tcmalloc";;
v) verbose=1;;
*) echo ; usage ; exit 1;;
esac
done
if [ $rocksdb -eq 1 ]; then
CONFIGURE_FLAGS="$CONFIGURE_FLAGS --with-librocksdb-static"
fi
if [ $profile -eq 1 ]; then
if [ $debug_level -ne 0 ]; then
echo "Can't specify both -d and -P. Profiling builds are \
different than debug builds."
exit 1
fi
CFLAGS="${CFLAGS} -fno-omit-frame-pointer -O2"
CXXFLAGS="${CXXFLAGS} -fno-omit-frame-pointer -O2"
debug_level=1
fi
if [ "${debug_level}" -ge 1 ]; then
CFLAGS="${CFLAGS} -g"
fi
if [ "${debug_level}" -ge 3 ]; then
CFLAGS="${CFLAGS} -Wextra \
-Wno-missing-field-initializers -Wno-missing-declarations"
fi
if [ "${debug_level}" -ge 4 ]; then
if [ "${CXX}" != "clang++" ]; then
CXXFLAGS="${CXXFLAGS} -Wstrict-null-sentinel -Woverloaded-virtual"
else
CXXFLAGS="${CXXFLAGS} -Woverloaded-virtual"
fi
CFLAGS="${CFLAGS} \
-Wuninitialized -Winit-self \
-Wformat=2 -Wunused -Wfloat-equal \
-Wundef -Wunsafe-loop-optimizations -Wpointer-arith -Wcast-qual \
-Wcast-align -Wwrite-strings -Wlogical-op \
-Wmissing-format-attribute -Wredundant-decls -Winvalid-pch"
fi
if [ "${debug_level}" -ge 5 ]; then
CFLAGS="${CFLAGS} -Wswitch-enum -Wpacked"
fi
if [ "${debug_level}" -ge 2000 ]; then
CFLAGS="${CFLAGS} -Wsign-promo -Wconversion -Waggregate-return -Wlong-long"
CXXFLAGS="${CXXFLAGS} -Wold-style-cast"
fi
if [ -n "${encode_dump}" ]; then
CXXFLAGS="${CXXFLAGS} -DENCODE_DUMP=${encode_dump}"
fi
# Warning about unused parameters just leads to a lot of pointless spew when
# using C++. It doesn't interact well with class inheritance.
CFLAGS="${CFLAGS} -Wno-unused-parameter"
CXXFLAGS="${CXXFLAGS} ${CFLAGS}"
if [ "${verbose}" -ge 1 ]; then
echo "CFLAGS=${CFLAGS}"
echo "CXXFLAGS=${CFLAGS}"
fi
export CFLAGS
export CXXFLAGS
./autogen.sh || die "autogen failed"
./configure \
--prefix=/usr --sbindir=/sbin --localstatedir=/var --sysconfdir=/etc \
--with-debug $with_profiler --with-nss --without-cryptopp --with-radosgw \
$CONFIGURE_FLAGS \
|| die "configure failed"