mirror of
https://github.com/boostorg/histogram.git
synced 2026-01-19 04:12:12 +00:00
autodetect the best gcov version
This commit is contained in:
@@ -1,7 +1,12 @@
|
||||
#!/bin/sh
|
||||
# must be executed in project root folder
|
||||
if [ -z $GCOV ]; then
|
||||
GCOV=gcov
|
||||
for i in 9 8 5; do
|
||||
if test $(which gcov-$i); then
|
||||
GCOV=gcov-$i
|
||||
break;
|
||||
fi;
|
||||
done
|
||||
fi
|
||||
|
||||
LCOV_VERSION="1.14"
|
||||
|
||||
Reference in New Issue
Block a user