diff mbox series

[pushed] configure: enable plugin support for ld.mold

Message ID bebe68bf-e5dd-e0d5-0dfa-0e2b2ca39797@suse.cz
State New
Headers show
Series [pushed] configure: enable plugin support for ld.mold | expand

Commit Message

Martin Liška March 3, 2022, 2:48 p.m. UTC
Hi.

There's another part of mold enablement.

Going to push it.
Martin

gcc/ChangeLog:

	* configure.ac: Now ld.mold support LTO plugin API, use it.
	* configure: Regenerate.
---
  gcc/configure    | 2 ++
  gcc/configure.ac | 2 ++
  2 files changed, 4 insertions(+)
diff mbox series

Patch

diff --git a/gcc/configure b/gcc/configure
index 22eb3451e3d..6f5fc20fcf3 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -26037,6 +26037,8 @@  if test -f liblto_plugin.la; then
      # Allow -fuse-linker-plugin to enable plugin support in GNU gold 2.20.
      elif test "$ld_is_gold" = yes -a "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -eq 20; then
        gcc_cv_lto_plugin=1
+    elif test "$ld_is_mold" = yes; then
+      gcc_cv_lto_plugin=1
      fi
    fi
  
diff --git a/gcc/configure.ac b/gcc/configure.ac
index 20da90901f8..3d85d33bc80 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -4278,6 +4278,8 @@  changequote([,])dnl
      # Allow -fuse-linker-plugin to enable plugin support in GNU gold 2.20.
      elif test "$ld_is_gold" = yes -a "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -eq 20; then
        gcc_cv_lto_plugin=1
+    elif test "$ld_is_mold" = yes; then
+      gcc_cv_lto_plugin=1
      fi
    fi