On Wed, Mar 29, 2023 at 02:55:01PM +0200, Martin Liška wrote: > Ready to be installed? > Thanks, > Martin > > PR bootstrap/109310 > > gcc/ChangeLog: > > * configure.ac: Emit a warning for deprecated option > --enable-link-mutex. > * configure: Regenerate.
LGTM. > diff --git a/gcc/configure b/gcc/configure > index 15086578533..09ae93ade1a 100755 > --- a/gcc/configure > +++ b/gcc/configure > @@ -31468,6 +31468,7 @@ $as_echo "$do_link_mutex" >&6; } > > if test "$do_link_mutex" = "yes"; then > DO_LINK_MUTEX=true > + echo gcc/configure: WARNING: --enable-link-mutex is deprecated and will > be removed in the next release, use --enable-link-serialization instead 1>&2 > else > DO_LINK_MUTEX=false > fi > diff --git a/gcc/configure.ac b/gcc/configure.ac > index 120151c474a..13c1a85851c 100644 > --- a/gcc/configure.ac > +++ b/gcc/configure.ac > @@ -7013,6 +7013,7 @@ AC_MSG_RESULT($do_link_mutex) > > if test "$do_link_mutex" = "yes"; then > DO_LINK_MUTEX=true > + echo gcc/configure: WARNING: --enable-link-mutex is deprecated and will > be removed in the next release, use --enable-link-serialization instead 1>&2 > else > DO_LINK_MUTEX=false > fi > -- > 2.40.0 Jakub