[llvm] 82732fa - [docs] Fix default Sphinx worker count (#217429)

via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 19 11:42:31 PDT 2026


Author: Reid Kleckner
Date: 2026-08-19T11:42:26-07:00
New Revision: 82732fa55a1d9e9d0130fde21a7ebed6344f04ba

URL: https://github.com/llvm/llvm-project/commit/82732fa55a1d9e9d0130fde21a7ebed6344f04ba
DIFF: https://github.com/llvm/llvm-project/commit/82732fa55a1d9e9d0130fde21a7ebed6344f04ba.diff

LOG: [docs] Fix default Sphinx worker count (#217429)

I renamed the variable at the last minute, and the search and replace
didn't catch all instances. Follow-up to #217161 /
0e6f9b26868c37cfb27fdc99af0524ed78e1dfd8.

Added: 
    

Modified: 
    llvm/cmake/modules/AddSphinxTarget.cmake

Removed: 
    


################################################################################
diff  --git a/llvm/cmake/modules/AddSphinxTarget.cmake b/llvm/cmake/modules/AddSphinxTarget.cmake
index 6b3987cbbc7c0..197a1552d6b4e 100644
--- a/llvm/cmake/modules/AddSphinxTarget.cmake
+++ b/llvm/cmake/modules/AddSphinxTarget.cmake
@@ -163,7 +163,7 @@ function (add_sphinx_target builder project)
     math(EXPR LLVM_SPHINX_THREADS
          "(${number_of_logical_cores} + 1) / 2")
   endif()
-  set(LLVM_SPHINX_THREADS "${LLVM_SPHINX_BUILD_JOBS}"
+  set(LLVM_SPHINX_THREADS "${LLVM_SPHINX_THREADS}"
       CACHE STRING "Define the number of parallel jobs for each Sphinx build.")
   if (LLVM_SPHINX_THREADS)
     set(sphinx_jobs_flag -j ${LLVM_SPHINX_THREADS})


        


More information about the llvm-commits mailing list