From 2a74efa24ab12ce19b172f64e471159a6425a124 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Sat, 11 Feb 2023 09:28:52 -0600 Subject: [PATCH] build: disable clang-tidy by default (#4824) workaround for https://github.com/llvm/llvm-project/issues/59492 Fixes #4821. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0f293eb4b..ac2985510 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,7 +55,7 @@ option(ENABLE_WERROR "Treat warnings as errors" OFF) option(ENABLE_NLS "Enable native language support" ON) option(INSTALL_DOC "Build/install documentation" ON) option(INSTALL_LIB "Install the library" OFF) -tr_auto_option(RUN_CLANG_TIDY "Run clang-tidy on the code" AUTO) +tr_auto_option(RUN_CLANG_TIDY "Run clang-tidy on the code" OFF) tr_auto_option(USE_SYSTEM_EVENT2 "Use system event2 library" AUTO) tr_auto_option(USE_SYSTEM_DEFLATE "Use system deflate library" AUTO) tr_auto_option(USE_SYSTEM_DHT "Use system dht library" AUTO)