https://gcc.gnu.org/g:dd5f3d016e7119899627b3b6baa677af5c128927
commit r17-1063-gdd5f3d016e7119899627b3b6baa677af5c128927 Author: Martin Liska <[email protected]> Date: Fri May 29 08:28:37 2026 +0200 declare Wild linker capable of LTO bootstrap gcc/ChangeLog: * configure.ac: Declare Wild as capable of LTO bootstrap. * configure: Regenerate. Diff: --- gcc/configure | 2 ++ gcc/configure.ac | 2 ++ 2 files changed, 4 insertions(+) diff --git a/gcc/configure b/gcc/configure index 3cf0d0b5d1ce..b9a99c8e9cfa 100755 --- a/gcc/configure +++ b/gcc/configure @@ -28623,6 +28623,8 @@ if test -f liblto_plugin.la; then gcc_cv_lto_plugin=2 elif test "$ld_is_mold" = yes; then gcc_cv_lto_plugin=2 + elif test "$ld_is_wild" = yes; then + gcc_cv_lto_plugin=2 # 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 diff --git a/gcc/configure.ac b/gcc/configure.ac index 0f3e5605a7f0..4360cb955662 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -4479,6 +4479,8 @@ changequote([,])dnl gcc_cv_lto_plugin=2 elif test "$ld_is_mold" = yes; then gcc_cv_lto_plugin=2 + elif test "$ld_is_wild" = yes; then + gcc_cv_lto_plugin=2 # 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
