mirror of
https://github.com/boostorg/histogram.git
synced 2025-05-10 07:14:05 +00:00
autodetect the best gcov version
This commit is contained in:
parent
8a6c97a2df
commit
3ed997fba2
@ -1,7 +1,12 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# must be executed in project root folder
|
# must be executed in project root folder
|
||||||
if [ -z $GCOV ]; then
|
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
|
fi
|
||||||
|
|
||||||
LCOV_VERSION="1.14"
|
LCOV_VERSION="1.14"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user