diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-12 15:47:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-12 16:49:36 +0200 |
commit | d45a158f2d9114069870469e9004f3f7ed1f3636 (patch) | |
tree | 9fa077e6163774e0efe04c632468616556bf0a8b /solenv | |
parent | 446f9cf176038881af166e46489bb1880b22174d (diff) |
improve message when running perfcheck without valgrind installed
Change-Id: I50e7d3f38dc16feab450e32085e8c031904b216c
Reviewed-on: https://gerrit.libreoffice.org/57347
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/CppunitTest.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/CppunitTest.mk b/solenv/gbuild/CppunitTest.mk index 45af5c9b25a7..930979308b5b 100644 --- a/solenv/gbuild/CppunitTest.mk +++ b/solenv/gbuild/CppunitTest.mk @@ -54,7 +54,7 @@ endif endif ifneq (,$(filter perfcheck,$(MAKECMDGOALS))) -$(if $(ENABLE_VALGRIND),,$(call gb_Output_error,Running performance tests with empty $$(ENABLE_VALGRIND) does not make sense)) +$(if $(ENABLE_VALGRIND),,$(call gb_Output_error,Running performance tests with empty $$(ENABLE_VALGRIND) does not make sense. Please install valgrind-dev and re-run autogen.)) gb_CppunitTest_VALGRINDTOOL := valgrind --tool=callgrind --dump-instr=yes --instr-atstart=no --simulate-cache=yes --dump-instr=yes --collect-bus=yes --branch-sim=yes ifneq ($(strip $(VALGRIND_GDB)),) gb_CppunitTest_VALGRINDTOOL += --vgdb=yes --vgdb-error=0 |