configure.ac |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f0625d229106bb9c7893ce19e46a1183efe46dbf
Author:     Stephan Bergmann <[email protected]>
AuthorDate: Sun Dec 7 18:12:14 2025 +0100
Commit:     Stephan Bergmann <[email protected]>
CommitDate: Sun Dec 7 21:35:00 2025 +0100

    Update Clang baseline version check
    
    ...after version bump documented at e8fd52037a3b77e2da95918ff4ba5ed465c2f3bc
    "Update README.md after Clang bump to 18"
    
    Change-Id: If79439fb0f386f3d8f21a6cc6019ae1373e08245
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195197
    Reviewed-by: Stephan Bergmann <[email protected]>
    Tested-by: Jenkins

diff --git a/configure.ac b/configure.ac
index 2621f998c57d..b997d83746ae 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4829,10 +4829,10 @@ if test "$COM_IS_CLANG" = TRUE; then
         CLANG_FULL_VERSION=`echo __clang_version__ | $CC $my_args -`
         CLANGVER=`echo $clang_version \
             | $AWK -F. '{ print 
\$1*10000+(\$2<100?\$2:99)*100+(\$3<100?\$3:99) }'`
-        if test "$CLANGVER" -ge 120000; then
+        if test "$CLANGVER" -ge 180000; then
             AC_MSG_RESULT([yes ($clang_version)])
         else
-            AC_MSG_ERROR(["$CLANG_FULL_VERSION" is too old or unrecognized, 
must be at least Clang 12])
+            AC_MSG_ERROR(["$CLANG_FULL_VERSION" is too old or unrecognized, 
must be at least Clang 18])
         fi
         if test "$CLANGVER" -ge 160000; then
             CLANG_16=TRUE

Reply via email to