diff options
Diffstat (limited to 'llvm/docs/CMake.rst')
-rw-r--r-- | llvm/docs/CMake.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/docs/CMake.rst b/llvm/docs/CMake.rst index 17be41b..365365c 100644 --- a/llvm/docs/CMake.rst +++ b/llvm/docs/CMake.rst @@ -615,11 +615,11 @@ enabled sub-projects. Nearly all of these variable names begin with .. note:: The list should not have duplicates with ``LLVM_ENABLE_PROJECTS``. - The full list is: - - ``libc;libunwind;libcxxabi;libcxx;compiler-rt;openmp;llvm-libgcc;offload`` + To list all possible runtimes, include an invalid name. For example + ``-DLLVM_ENABLE_RUNTIMES=notaruntime``. The resulting CMake error will list + the possible runtime names. - To enable all of them, use: + To enable all of the runtimes, use: ``LLVM_ENABLE_RUNTIMES=all`` |