From f71e02fa46f8ff2e37dc2fee02a63227b823b292 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Wed, 5 Jan 2022 20:03:52 -0800 Subject: [PATCH] [CMake] Disable LLVM_INCLUDE_GO_TESTS by default llvm/test/Bindings/Go is quite flaky in the past few months and nobody fixes it. See * https://lists.llvm.org/pipermail/llvm-dev/2021-December/154353.html "Suggestions on debugging pre-merge test failure that looks irrelevant." * https://github.com/llvm/llvm-project/issues/53017 Reviewed By: aeubanks Differential Revision: https://reviews.llvm.org/D116698 --- llvm/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt index 672183f..af32d35 100644 --- a/llvm/CMakeLists.txt +++ b/llvm/CMakeLists.txt @@ -593,7 +593,7 @@ endif(LLVM_BUILD_EXAMPLES) option(LLVM_BUILD_TESTS "Build LLVM unit tests. If OFF, just generate build targets." OFF) option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON) -option(LLVM_INCLUDE_GO_TESTS "Include the Go bindings tests in test build targets." ON) +option(LLVM_INCLUDE_GO_TESTS "Include the Go bindings tests in test build targets." OFF) option(LLVM_BUILD_BENCHMARKS "Add LLVM benchmark targets to the list of default targets. If OFF, benchmarks still could be built using Benchmarks target." OFF) -- 2.7.4