quickbook/build/warning-check
Daniel James 6d55edfe3f Use C++11
2017-12-18 17:16:25 +00:00

30 lines
527 B
Bash
Executable File

#!/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