From 3f6b97982fc70ee6baf9a9d159a301b224b68c15 Mon Sep 17 00:00:00 2001 From: Erik Lindahl Date: Mon, 11 Aug 2014 01:24:26 +0200 Subject: [PATCH] Make internal BLAS/LAPACK messages less noisy BLAS and LAPACK are close to insignificant to Gromacs, so avoid multi-line noisy warnings about "fallback" solutions; those will just worry users and make them spend time investigating under what conditions it might play a role, when we really don't care much for BLAS/LAPACK performance. Message has been changed to short inconspicuous status lines when we are using built-in versions. Change-Id: I9f1b0c769907521d5cb6325c8d67cd61ca8a803a --- cmake/gmxManageLinearAlgebraLibraries.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/gmxManageLinearAlgebraLibraries.cmake b/cmake/gmxManageLinearAlgebraLibraries.cmake index aa1df74a5d..8c8562b9c7 100644 --- a/cmake/gmxManageLinearAlgebraLibraries.cmake +++ b/cmake/gmxManageLinearAlgebraLibraries.cmake @@ -120,7 +120,7 @@ macro(manage_linear_algebra_library name function_in_library) endif() if (NOT _library_was_found AND NOT _find_quietly) - message("${_message_text}A ${name} library was not found by CMake in the paths available to it. Falling back on the GROMACS internal version of the ${name} library instead. This is fine for normal usage.") + message(STATUS "${_message_text}Using GROMACS built-in ${name}.") endif() endif() -- 2.22.0