Re: [PATCH 3/8] libstdc++: use grep -E instead of egrep in scripts

2022-06-24 Thread Jonathan Wakely via Gcc-patches
On Fri, 24 Jun 2022 at 13:37, Xi Ruoyao wrote: > > On Fri, 2022-06-24 at 13:41 +0200, Rainer Orth wrote: > > Hi Jonathan, > > > > > > > I'll need some rework as Rainer told me "grep -E" may not work on some > > > > > Solaris systems w/o GNU grep, and the code snippet in > > > > > extract_symvers.

Re: [PATCH 3/8] libstdc++: use grep -E instead of egrep in scripts

2022-06-24 Thread Xi Ruoyao via Gcc-patches
On Fri, 2022-06-24 at 13:41 +0200, Rainer Orth wrote: > Hi Jonathan, > > > > > I'll need some rework as Rainer told me "grep -E" may not work on some > > > > Solaris systems w/o GNU grep, and the code snippet in extract_symvers.in > > > > is exactly for Solaris... > > > > > > I checked that, and

Re: [PATCH 3/8] libstdc++: use grep -E instead of egrep in scripts

2022-06-24 Thread Rainer Orth
Hi Jonathan, >> > I'll need some rework as Rainer told me "grep -E" may not work on some >> > Solaris systems w/o GNU grep, and the code snippet in extract_symvers.in >> > is exactly for Solaris... >> >> I checked that, and it's not :-) >> >> The egrep uses in extract_symvers.in are for everything

Re: [PATCH 3/8] libstdc++: use grep -E instead of egrep in scripts

2022-06-24 Thread Jonathan Wakely via Gcc-patches
On Fri, 24 Jun 2022 at 12:18, Jonathan Wakely wrote: > > On Fri, 24 Jun 2022 at 12:08, Xi Ruoyao via Libstdc++ > wrote: > > > > On Fri, 2022-06-24 at 11:00 +0100, Jonathan Wakely wrote: > > > On Fri, 24 Jun 2022 at 08:03, Xi Ruoyao via Libstdc++ > > > wrote: > > > > > > > > egrep has been deprec

Re: [PATCH 3/8] libstdc++: use grep -E instead of egrep in scripts

2022-06-24 Thread Jonathan Wakely via Gcc-patches
On Fri, 24 Jun 2022 at 12:08, Xi Ruoyao via Libstdc++ wrote: > > On Fri, 2022-06-24 at 11:00 +0100, Jonathan Wakely wrote: > > On Fri, 24 Jun 2022 at 08:03, Xi Ruoyao via Libstdc++ > > wrote: > > > > > > egrep has been deprecated in favor of grep -E for a long time, and > > > the > > > next grep

Re: [PATCH 3/8] libstdc++: use grep -E instead of egrep in scripts

2022-06-24 Thread Xi Ruoyao via Gcc-patches
On Fri, 2022-06-24 at 11:00 +0100, Jonathan Wakely wrote: > On Fri, 24 Jun 2022 at 08:03, Xi Ruoyao via Libstdc++ > wrote: > > > > egrep has been deprecated in favor of grep -E for a long time, and > > the > > next grep release (3.8 or 4.0) will print a warning of egrep is > > used. > > Stop usin

Re: [PATCH 3/8] libstdc++: use grep -E instead of egrep in scripts

2022-06-24 Thread Jonathan Wakely via Gcc-patches
On Fri, 24 Jun 2022 at 08:03, Xi Ruoyao via Libstdc++ wrote: > > egrep has been deprecated in favor of grep -E for a long time, and the > next grep release (3.8 or 4.0) will print a warning of egrep is used. > Stop using egrep so we won't see the warning. > > libstdc++-v3/ChangeLog: > > *