From fc327909a30876a7f813c8e41dd3fcccc1bc6ee9 Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Sun, 9 Dec 2012 23:15:20 +0100 Subject: [PATCH] Reworded "LLVM not found" message. Setting LLVM_CONFIG is the way to go on many Linux systems, which add a version suffix to the LLVM binaries. --- cmake/Modules/FindLLVM.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Modules/FindLLVM.cmake b/cmake/Modules/FindLLVM.cmake index 8de03d44..064e6f5c 100644 --- a/cmake/Modules/FindLLVM.cmake +++ b/cmake/Modules/FindLLVM.cmake @@ -48,7 +48,7 @@ if (NOT LLVM_CONFIG) endforeach() else() if (NOT FIND_LLVM_QUIETLY) - message(WARNING "Could not find llvm-config. Consider manually setting LLVM_ROOT_DIR.") + message(WARNING "Could not find llvm-config. Try manually setting LLVM_CONFIG to the llvm-config executable of the installation to use.") endif() endif() else()