Skip to content

Commit 6ce8727

Browse files
committed
[cmake] Remove LLVM_INCLUDE_GO_TESTS variable
As pointed out by thakis in https://reviews.llvm.org/D135436#3858463, this variable can be dropped now that the Go bindings have been removed.
1 parent 3a31970 commit 6ce8727

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

clang/cmake/caches/Fuchsia-stage2.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ set(LLVM_ENABLE_Z3_SOLVER OFF CACHE BOOL "")
2121
set(LLVM_ENABLE_ZLIB ON CACHE BOOL "")
2222
set(LLVM_INCLUDE_DOCS OFF CACHE BOOL "")
2323
set(LLVM_INCLUDE_EXAMPLES OFF CACHE BOOL "")
24-
set(LLVM_INCLUDE_GO_TESTS OFF CACHE BOOL "")
2524
set(LLVM_STATIC_LINK_CXX_STDLIB ON CACHE BOOL "")
2625
set(LLVM_USE_RELATIVE_PATHS_IN_FILES ON CACHE BOOL "")
2726

clang/cmake/caches/Fuchsia.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ set(LLVM_ENABLE_Z3_SOLVER OFF CACHE BOOL "")
1616
set(LLVM_ENABLE_ZLIB OFF CACHE BOOL "")
1717
set(LLVM_INCLUDE_DOCS OFF CACHE BOOL "")
1818
set(LLVM_INCLUDE_EXAMPLES OFF CACHE BOOL "")
19-
set(LLVM_INCLUDE_GO_TESTS OFF CACHE BOOL "")
2019

2120
if(WIN32)
2221
set(LLVM_USE_CRT_RELEASE "MT" CACHE STRING "")

llvm/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,6 @@ endif(LLVM_BUILD_EXAMPLES)
702702
option(LLVM_BUILD_TESTS
703703
"Build LLVM unit tests. If OFF, just generate build targets." OFF)
704704
option(LLVM_INCLUDE_TESTS "Generate build targets for the LLVM unit tests." ON)
705-
option(LLVM_INCLUDE_GO_TESTS "Include the Go bindings tests in test build targets." OFF)
706705

707706
option(LLVM_BUILD_BENCHMARKS "Add LLVM benchmark targets to the list of default
708707
targets. If OFF, benchmarks still could be built using Benchmarks target." OFF)

llvm/test/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ llvm_canonicalize_cmake_booleans(
1010
LLVM_ENABLE_ZLIB
1111
LLVM_ENABLE_ZSTD
1212
LLVM_ENABLE_LIBXML2
13-
LLVM_INCLUDE_GO_TESTS
1413
LLVM_LINK_LLVM_DYLIB
1514
LLVM_TOOL_LTO_BUILD
1615
LLVM_USE_INTEL_JITEVENTS

llvm/test/lit.site.cfg.py.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ config.osx_sysroot = path(r"@CMAKE_OSX_SYSROOT@")
2121
config.ocamlfind_executable = "@OCAMLFIND@"
2222
config.have_ocamlopt = @HAVE_OCAMLOPT@
2323
config.ocaml_flags = "@OCAMLFLAGS@"
24-
config.include_go_tests = @LLVM_INCLUDE_GO_TESTS@
2524
config.ptxas_executable = "@PTXAS_EXECUTABLE@"
2625
config.enable_shared = @ENABLE_SHARED@
2726
config.enable_assertions = @ENABLE_ASSERTIONS@

0 commit comments

Comments
 (0)