From 0d3b2b80aa6aee753f372bb0300a131691e9f55c Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 14 Apr 2014 21:52:03 -0400 Subject: [PATCH] Have lcov call the right gcov By default, lcov will call whatever gcov it can find in the path. But if the user has specified a different gcov to configure, this could be incompatible. So tell lcov explicitly with an option which gcov program to call. --- src/Makefile.global.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.global.in b/src/Makefile.global.in index c2bdab38b7e..2a2470883fc 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -779,7 +779,7 @@ gcda_files := $(wildcard *.gcda) lcov.info: $(gcda_files) rm -f *.gcov - $(if $^,$(LCOV) -d . -c -o $@ $(LCOVFLAGS)) + $(if $^,$(LCOV) -d . -c -o $@ $(LCOVFLAGS) --gcov-tool $(GCOV)) %.c.gcov: %.gcda | lcov.info $(GCOV) -b -f -p -o . $(GCOVFLAGS) $*.c >$*.c.gcov.out