Browse Source

refs #4871 fix finding of gcov47

git-svn-id: file:///svn/toku/tokudb@46067 c7de825b-a66e-492c-adef-691d508d4ae1
pull/73/head
TokuBuild 13 years ago
committed by Yoni Fogel
parent
commit
720ca62b9d
  1. 2
      cmake_modules/TokuSetupCompiler.cmake

2
cmake_modules/TokuSetupCompiler.cmake

@ -30,7 +30,7 @@ if (USE_GCOV)
if (NOT CMAKE_CXX_COMPILER_ID MATCHES GNU)
message(FATAL_ERROR "Must use the GNU compiler to compile for test coverage.")
endif ()
find_path(COVERAGE_COMMAND NAMES gcov47 gcov)
find_program(COVERAGE_COMMAND NAMES gcov47 gcov)
endif (USE_GCOV)
include(CheckCCompilerFlag)

Loading…
Cancel
Save