mirror of
https://github.com/boostorg/histogram.git
synced 2025-05-09 23:04:07 +00:00
autodetect the best gcov version
This commit is contained in:
parent
8a6c97a2df
commit
3ed997fba2
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user