cryb-to/autogen.des

43 lines
724 B
Text
Raw Normal View History

2014-07-04 11:18:53 +00:00
#!/bin/sh
has() {
which "$@" >/dev/null 2>&1
}
# BullseyeCoverage needs to know exactly which compiler we're using
if has clang clang++ ; then
echo "using Clang"
export CC="${CC:-clang}"
export CPP="${CPP:-${CC} -E}"
export CXX="${CXX:-clang++}"
elif has gcc g++ ; then
echo "using GCC"
export CC="${CC:-gcc}"
export CPP="${CPP:-gcc -E}"
export CXX="${CXX:-g++}"
else
echo "WARNING: using default compiler," \
"coverage analysis may not work"
fi
set -e
if has cov01 ; then
2016-01-09 19:23:33 +00:00
cov01 -qu
cov01 -q0
2014-07-04 11:18:53 +00:00
fi
. ./autogen.sh
./configure \
2015-12-14 17:08:22 +00:00
--enable-all \
--enable-openssl-tests \
--enable-rsaref-tests \
2014-07-04 11:18:53 +00:00
--enable-developer-warnings \
--enable-werror \
"$@"
if has cov01 ; then
2016-01-09 19:23:33 +00:00
cov01 -qo
2014-07-04 11:18:53 +00:00
fi