From cee586b492b9f55b22f99db756da1315c777d09d Mon Sep 17 00:00:00 2001
From: Stephane Del Pino <stephane.delpino44@gmail.com>
Date: Tue, 25 Feb 2025 21:55:36 +0100
Subject: [PATCH] Change Clang minimal version to 14

---
 CMakeLists.txt | 2 +-
 README.md      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2b82d3068..0e2991963 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -95,7 +95,7 @@ endif()
 
 # Checks if compiler version is compatible with Pugs sources
 set(GNU_CXX_MIN_VERSION "10.0.0")
-set(CLANG_CXX_MIN_VERSION "11.0.0")
+set(CLANG_CXX_MIN_VERSION "14.0.0")
 
 #------------------------------------------------------
 # Change Kokkos namespace to avoid conflicts
diff --git a/README.md b/README.md
index 473b27b07..0fb43ab24 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ that are assembled together by a user friendly language.
 For the most basic build, `pugs` only requires
 - a C++-20 compiler.
   - g++-10 or higher versions
-  - clang-11 or higher versions
+  - clang-14 or higher versions
 - `CMake` (at least 3.19)
 
 > **Warning**:<br>
-- 
GitLab