blob: 064d499324c8fee2e045ee0bf784235d43bd7cc4 (
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
|
#!/usr/bin/env bash
cd $(dirname $0)/../src
tmpfile=$(tempfile)
CXX=${CXX:-g++}
BOOST_ROOT=${BOOST_ROOT:-../../..}
failure=0
for filename in *.cpp
do
set -x
if ! $CXX -c -O0 --std=c++11 -isystem $BOOST_ROOT $filename -o $tmpfile \
-pedantic -Wstrict-aliasing -fstrict-aliasing \
-Werror -Wall -Wextra \
-Wunused-parameter -Wshadow \
-Wfloat-equal \
-Wsign-promo -Wconversion -Wno-sign-conversion
then
failure=1
fi
set +x
done
rm $tmpfile
exit $failure
|