From d5f074902c46e1326b6f53a01a0b975f8cec8aa3 Mon Sep 17 00:00:00 2001 From: Graham Sider Date: Wed, 11 May 2022 13:39:49 -0400 Subject: [PATCH] kfdtest: Update CMake message on LLVM build search Old CMake message was misleading, update to reflect what it's actually doing. Signed-off-by: Graham Sider Change-Id: I8fd18a9095ea350cc10494b4382706027b447ba3 --- tests/kfdtest/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/kfdtest/CMakeLists.txt b/tests/kfdtest/CMakeLists.txt index 55fb4c8c51..6eeffa5585 100644 --- a/tests/kfdtest/CMakeLists.txt +++ b/tests/kfdtest/CMakeLists.txt @@ -105,8 +105,8 @@ find_path( LIGHTNING_CMAKE_DIR NAMES LLVMConfig.cmake if ( DEFINED LIGHTNING_CMAKE_DIR AND EXISTS ${LIGHTNING_CMAKE_DIR} ) set ( LLVM_DIR ${LIGHTNING_CMAKE_DIR} ) else() - message( WARNING "Couldn't find Lightning build. " - "Attempting to use system LLVM install..." ) + message( STATUS "Couldn't find Lightning build in compute directory. " + "Searching LLVM_DIR then defaulting to system LLVM install if still not found..." ) endif() find_package( LLVM REQUIRED CONFIG )