As for std::vector, GDB can and does do this now, through python based pretty printers.
That gdb script is completely unnecessary for this now.
Most distros ship with gdb + appropriate pretty printers pre-installed, but they are also available in the libstdc++ repo.
The pretty printers let you print the entire vector, but do they let you access individual elements within the (potentially very large) vector? That's what this blog post is complaining about not being able to do.
So, I thought the post above me asked a different question, related to printing out vectors in general :)
Possibly they didn't mean to, but asking gdb to "p v[0]" is a function call execution of operator[]. As mentioned in the grandparent, this should work fine on a live process, but is harder on a not live one.
It's possible the parent meant "why can't GDB make v[0] do an inspection directly on the structure". The simple answer is: "It can't possibly know what the function call does". So you'd have to teach it, specifically, that std::vector is special, or provide a mechanism to override the native calls with python scripting (IE be able to say "here is a replacement for T &operator[int] on std::vector that is in python, and works without a live process").
GDB actually does real overload resolution (it has to, otherwise in some 'simple' cases, it'd have to ask you 100 questions about what functions you are trying to call), making that strategy more complicated.
If your only mechanism for reproduction is a core dump, yes this is a pain in the ass. But this shouldn't be true, even remotely, since you always have things like gdbserver/etc.
http://www.yolinux.com/TUTORIALS/src/dbinit_stl_views-1.03.t...
Here they have some functions that inspect vector by means of _M_impl and friends, why can't gdb do this?