Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Lancelot SIX <lancelot.six@amd.com>
To: Pedro Alves <pedro@palves.net>, Tom Tromey <tom@tromey.com>
Cc: <gdb-patches@sourceware.org>
Subject: Re: [PATCH 00/11] GDB: Require C++17
Date: Sat, 28 Oct 2023 20:48:40 +0000	[thread overview]
Message-ID: <20231028204821.fp5hh7bahrmrnpjl@hpe6u-23> (raw)
In-Reply-To: <d54a294b-3042-4d42-bb62-9996d367f94b@amd.com>

On Mon, Oct 23, 2023 at 02:42:18PM +0100, Lancelot SIX wrote:
> 
> > > Lancelot> This series is a followup of the discussions from last Cauldron and Tom's
> > > Lancelot> RFC patch[1] regarding requiring C++17 in GDB.  It seems that the
> > > Lancelot> overall sentiment is positive for such move, so here is a proper series.
> > > 
> > > Hi.  I've sent a few minor comments, but otherwise everything looks good
> > > to me.
> > > 
> > > Thank you for doing this.
> > 
> > Ditto.
> > 
> > > 
> > > Approved-By: Tom Tromey <tom@tromey.com>
> > > 
> > > I'm giving my approval but this should probably wait a little for others
> > > to comment as well.
> > 
> > and ditto here too.  You can add mine:
> > 
> >    Approved-By: Pedro Alves <pedro@palves.net>
> > 
> 
> Hi all,
> 
> I think I'll wait until about the end of the week and will push the first 2
> patches of the series.  This will make master require C++17 but not actually
> use C++17 yet.  I'll give a bit more time for the rest of the series, so if
> it causes problems to anyone, it is still easy to revert.
> 
> Best,
> Lancelot.

Hi all,

I have pushed the first 2 patches of the series (including the missing
update in gdb/README):
- eb4de4047d8 gdb/ax_cxx_compile_stdcxx.m4: upgrade
- f74dc26792a gdb/gdbsupport/gdbserver: Require c++17

I'll wait a bit more before applying the rest of the series.  The intent
is to have a time-window where C++17 is required but not extensively
used so it is still "easy" to revert the change is someone strongly
objects to it.

I think I'll wait at least a week or two before considering pushing the
rest of the series.

Best,
Lancelot.

  reply	other threads:[~2023-10-28 20:49 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-13 14:44 Lancelot Six
2023-10-13 14:44 ` [PATCH 01/11] gdb/ax_cxx_compile_stdcxx.m4: upgrade Lancelot Six
2023-10-13 14:44 ` [PATCH 02/11] gdb/gdbsupport/gdbserver: Require c++17 Lancelot Six
2023-10-13 15:21   ` Eli Zaretskii
2023-10-16 21:50   ` Pedro Alves
2023-10-13 14:44 ` [PATCH 03/11] gdb: Use C++17's std::make_unique instead of gdb::make_unique Lancelot Six
2023-10-16 19:14   ` Tom Tromey
2023-10-17 14:02     ` Lancelot SIX
2023-10-13 14:44 ` [PATCH 04/11] gdb: Replace gdb::optional with std::optional Lancelot Six
2023-10-13 14:44 ` [PATCH 05/11] gdbsupport: remove gdb::optional Lancelot Six
2023-10-13 14:44 ` [PATCH 06/11] gdb: Use std::string_view instead of gdb::string_view Lancelot Six
2023-10-14 21:50   ` Tom Tromey
2023-10-14 23:58     ` Six, Lancelot
2023-10-16 15:06     ` Lancelot SIX
2023-10-16 19:35       ` Tom Tromey
2023-10-16 21:51         ` Pedro Alves
2023-10-17 14:13           ` Lancelot SIX
2023-10-17 14:20             ` Simon Marchi
2023-10-13 14:44 ` [PATCH 07/11] gdb: Remove uses of gdb::to_string (const std::string_view &) Lancelot Six
2023-10-13 14:44 ` [PATCH 08/11] gdbsupport: Remove gdb::string_view Lancelot Six
2023-10-16 19:38   ` Tom Tromey
2023-10-13 14:44 ` [PATCH 09/11] gdbsupport: Replace gdb::invoke_result with std::invoke_result Lancelot Six
2023-10-13 14:44 ` [PATCH 10/11] gdb/disasm.h: Mark callbacks noexcept unconditionally Lancelot Six
2023-10-16 21:51   ` Pedro Alves
2023-10-13 14:44 ` [PATCH 11/11] gdb: Use initializers in lambda captures unconditionally Lancelot Six
2023-10-16 19:43 ` [PATCH 00/11] GDB: Require C++17 Tom Tromey
2023-10-16 21:53   ` Pedro Alves
2023-10-23 13:42     ` Lancelot SIX
2023-10-28 20:48       ` Lancelot SIX [this message]
2023-11-21 12:04         ` [COMMITTED PATCH v2 0/9] " Lancelot Six
2023-11-21 12:04         ` [COMMITTED PATCH v2 1/9] gdb: Use C++17's std::make_unique instead of gdb::make_unique Lancelot Six
2023-11-21 12:04         ` [COMMITTED PATCH v2 2/9] gdb: Replace gdb::optional with std::optional Lancelot Six
2023-11-21 12:04         ` [COMMITTED PATCH v2 3/9] gdbsupport: remove gdb::optional Lancelot Six
2023-11-21 12:04         ` [COMMITTED PATCH v2 4/9] gdb: Use std::string_view instead of gdb::string_view Lancelot Six
2023-11-21 12:04         ` [COMMITTED PATCH v2 5/9] gdb: Remove uses of gdb::to_string (const std::string_view &) Lancelot Six
2023-11-21 12:04         ` [COMMITTED PATCH v2 6/9] gdbsupport: Remove gdb::string_view Lancelot Six
2023-11-21 12:04         ` [COMMITTED PATCH v2 7/9] gdbsupport: Replace gdb::invoke_result with std::invoke_result Lancelot Six
2023-11-21 12:04         ` [COMMITTED PATCH v2 8/9] gdb/disasm.h: Mark callbacks noexcept unconditionally Lancelot Six
2023-11-21 12:05         ` [COMMITTED PATCH v2 9/9] gdb: Use initializers in lambda captures unconditionally Lancelot Six

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20231028204821.fp5hh7bahrmrnpjl@hpe6u-23 \
    --to=lancelot.six@amd.com \
    --cc=gdb-patches@sourceware.org \
    --cc=pedro@palves.net \
    --cc=tom@tromey.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox