summaryrefslogtreecommitdiff
path: root/openmp/docs
diff options
context:
space:
mode:
authorMark de Wever <koraq@xs4all.nl>2023-05-06 11:43:02 +0200
committerMark de Wever <koraq@xs4all.nl>2023-05-06 11:43:02 +0200
commitffb807ab5375b3f78df198dc5d4302b3b552242f (patch)
tree7e5f8afbb9414ac5ef6fee393a3141c2b4b40816 /openmp/docs
parent01fa764c9a3473f2c63241ac5e874019e666f405 (diff)
downloadllvm-ffb807ab5375b3f78df198dc5d4302b3b552242f.tar.gz
Reland "[CMake] Bumps minimum version to 3.20.0."
All build bots should be updated now. This reverts commit 44d38022ab29a3156349602733b3459df5beef93.
Diffstat (limited to 'openmp/docs')
-rw-r--r--openmp/docs/SupportAndFAQ.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/openmp/docs/SupportAndFAQ.rst b/openmp/docs/SupportAndFAQ.rst
index 249eb18b82a2..c50433bb5b6e 100644
--- a/openmp/docs/SupportAndFAQ.rst
+++ b/openmp/docs/SupportAndFAQ.rst
@@ -307,7 +307,7 @@ require a few additions.
.. code-block:: cmake
- cmake_minimum_required(VERSION 3.13.4)
+ cmake_minimum_required(VERSION 3.20.0)
project(offloadTest VERSION 1.0 LANGUAGES CXX)
list(APPEND CMAKE_MODULE_PATH "${PATH_TO_OPENMP_INSTALL}/lib/cmake/openmp")
@@ -318,7 +318,7 @@ require a few additions.
target_link_libraries(offload PRIVATE OpenMPTarget::OpenMPTarget_NVPTX)
target_sources(offload PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src/Main.cpp)
-Using this module requires at least CMake version 3.13.4. Supported languages
+Using this module requires at least CMake version 3.20.0. Supported languages
are C and C++ with Fortran support planned in the future. Compiler support is
best for Clang but this module should work for other compiler vendors such as
IBM, GNU.