doc: gdb is in the list now - #295
Merged
Merged
Conversation
MySQL was already there. gdb was not, and it is one of the larger users: it vendors a copy at gdbsupport/unordered_dense/ and wraps it as gdb::unordered_map and gdb::unordered_set, so every debugger built on gdb carries it -- AMD's ROCgdb and NVIDIA's cuda-gdb both ship their own copy. Confirmed the way the file says entries are confirmed, by reading the source: gdbsupport/unordered_map.h includes "unordered_dense/unordered_dense.h" and names ankerl::unordered_dense::map and bucket_type::standard directly. The copies in circulation are 4.9.2, 4.8.0 and 4.4.0 depending on the fork. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
MySQL was already in
doc/users.md, with the binlog writeset detail. gdb was not.It is one of the bigger users: gdb vendors a copy at
gdbsupport/unordered_dense/and wraps it asgdb::unordered_mapandgdb::unordered_setingdbsupport/unordered_map.handunordered_set.h, so every debugger built on gdb carries it. AMD's ROCgdb and NVIDIA's cuda-gdb both ship their own copy.Confirmed the way the file says its entries are confirmed - by reading the source.
gdbsupport/unordered_map.hhas#include "unordered_dense/unordered_dense.h"and namesankerl::unordered_dense::map,ankerl::unordered_dense::hashandbucket_type::standarddirectly.Versions in circulation, read from the vendored headers: 4.9.2 in
MIPS/binutils-gdb, 4.8.0 inROCm/ROCgdb, 4.4.0 inNVIDIA/cuda-gdb.Also bumped the "last refreshed" date in the header, since that is what the file promises.
One note for later: gdb names
bucket_type::standardexplicitly, so its path to 5.0 is exactly the sed in section 1 ofdoc/upgrading-to-5.md.🤖 Generated with Claude Code