diff --git a/.github/workflows/libcxx-build-and-test.yaml b/.github/workflows/libcxx-build-and-test.yaml index bb7243a19cf70..9b60bc81285f8 100644 --- a/.github/workflows/libcxx-build-and-test.yaml +++ b/.github/workflows/libcxx-build-and-test.yaml @@ -100,10 +100,6 @@ jobs: - config: 'generic-cxx26' cc: 'clang-19' cxx: 'clang++-19' - # Release transition - - config: 'generic-cxx23' - cc: 'clang-18' - cxx: 'clang++-18' steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: ${{ matrix.config }} diff --git a/libcxx/docs/index.rst b/libcxx/docs/index.rst index e2c62e9ecac02..a8b0d5ce1ee97 100644 --- a/libcxx/docs/index.rst +++ b/libcxx/docs/index.rst @@ -131,7 +131,7 @@ velocity, libc++ drops support for older compilers as newer ones are released. ============ =================== ========================== ===================== Compiler Versions Restrictions Support policy ============ =================== ========================== ===================== -Clang 18, 19, 20, 21-git latest two stable releases per `LLVM's release page `_ and the development version +Clang 19, 20, 21-git latest two stable releases per `LLVM's release page `_ and the development version AppleClang 15 latest stable release per `Xcode's release page `_ Open XL 17.1.3 (AIX) latest stable release per `Open XL's documentation page `_ GCC 14 In C++11 or later only latest stable release per `GCC's release page `_ diff --git a/libcxx/include/__configuration/compiler.h b/libcxx/include/__configuration/compiler.h index cf459a0619b23..4b6c6cad353e3 100644 --- a/libcxx/include/__configuration/compiler.h +++ b/libcxx/include/__configuration/compiler.h @@ -33,8 +33,8 @@ // Warn if a compiler version is used that is not supported anymore // LLVM RELEASE Update the minimum compiler versions # if defined(_LIBCPP_CLANG_VER) -# if _LIBCPP_CLANG_VER < 1800 -# warning "Libc++ only supports Clang 18 and later" +# if _LIBCPP_CLANG_VER < 1900 +# warning "Libc++ only supports Clang 19 and later" # endif # elif defined(_LIBCPP_APPLE_CLANG_VER) # if _LIBCPP_APPLE_CLANG_VER < 1500