configure.ac |   16 +---------------
 1 file changed, 1 insertion(+), 15 deletions(-)

New commits:
commit 717ed1d0d4f7d04a32038cb0ffe4ce815138902a
Author:     Stephan Bergmann <[email protected]>
AuthorDate: Sun Dec 7 21:42:22 2025 +0100
Commit:     Stephan Bergmann <[email protected]>
CommitDate: Mon Dec 8 07:36:26 2025 +0100

    Elide an obsolete Clang version check
    
    ...after version bump documented at 577aab3380f3fd921f461f55bb47ea5392492697
    "README.md: don't be too exact with the compiler plugins Clang version"
    
    Change-Id: If076181de79b3788d30c8f7b276c7919a5de80b3
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195208
    Reviewed-by: Stephan Bergmann <[email protected]>
    Tested-by: Jenkins

diff --git a/configure.ac b/configure.ac
index a86f9b1f12df..938d44112609 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8936,16 +8936,6 @@ if test "$COM_IS_CLANG" = "TRUE"; then
     else
         compiler_plugins=no
     fi
-    if test "$compiler_plugins" != no -a "$my_apple_clang" != yes; then
-        if test "$CLANGVER" -lt 120001; then
-            if test "$compiler_plugins" = yes; then
-                AC_MSG_ERROR(
-                    [Clang $CLANGVER is too old to build compiler plugins; 
need >= 12.0.1.])
-            else
-                compiler_plugins=no
-            fi
-        fi
-    fi
     if test "$compiler_plugins" != "no"; then
         dnl The prefix where Clang resides, override to where Clang resides if
         dnl using a source build:
commit 1ab2768960079d073a14e58a60c2d77f713a7c51
Author:     Stephan Bergmann <[email protected]>
AuthorDate: Sun Dec 7 21:40:48 2025 +0100
Commit:     Stephan Bergmann <[email protected]>
CommitDate: Mon Dec 8 07:36:12 2025 +0100

    Elide an obsolete Clang version check
    
    ...after f0625d229106bb9c7893ce19e46a1183efe46dbf "Update Clang baseline 
version
    check"
    
    Change-Id: Iab8589cb3a38d81996f63c89910368a41d94a3ff
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195207
    Reviewed-by: Stephan Bergmann <[email protected]>
    Tested-by: Jenkins

diff --git a/configure.ac b/configure.ac
index b997d83746ae..a86f9b1f12df 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5078,11 +5078,7 @@ check_use_ld()
     use_ld_path=${1#*:}
     if test "$use_ld_path" != "$1"; then
         if test "$COM_IS_CLANG" = TRUE; then
-            if test "$CLANGVER" -ge 120000; then
-                use_ld="${use_ld} --ld-path=${use_ld_path}"
-            else
-                use_ld="-fuse-ld=${use_ld_path}"
-            fi
+            use_ld="${use_ld} --ld-path=${use_ld_path}"
         else
             # I tried to use gcc's '-B<path>' and a directory + symlink setup 
in
             # $BUILDDIR, but libtool always filtered-out that option, so gcc 
wouldn't

Reply via email to