As PR119098 shows the gccgo driver uses the install path compiled into the shared libgo and thus updating that but not the driver will cause the driver to fail to find other tools like cgo.
Thus bump the SONAME for GCC 15 as well, as we've done for each release in the past. I think libgo changes go through another "upstream", so Ian, can you please take care of this? Thanks, Richard. PR go/119098 libgo/ * configure.ac (libtool_VERSION): Bump. * configure: Regenerate. --- libgo/configure | 2 +- libgo/configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libgo/configure b/libgo/configure index c0d0a1560f5..b1a2228fa1b 100755 --- a/libgo/configure +++ b/libgo/configure @@ -2611,7 +2611,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_headers="$ac_config_headers config.h" -libtool_VERSION=23:0:0 +libtool_VERSION=24:0:0 # Default to --enable-multilib diff --git a/libgo/configure.ac b/libgo/configure.ac index 898091276f7..0b05551aacb 100644 --- a/libgo/configure.ac +++ b/libgo/configure.ac @@ -10,7 +10,7 @@ AC_INIT(package-unused, version-unused,, libgo) AC_CONFIG_SRCDIR(Makefile.am) AC_CONFIG_HEADER(config.h) -libtool_VERSION=23:0:0 +libtool_VERSION=24:0:0 AC_SUBST(libtool_VERSION) AM_ENABLE_MULTILIB(, ..) -- 2.43.0