How can I know the libstdc++ version shipped with each gcc version?

gcc, libstdc++

Solution

You look in the manual, specifically at http://gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html which shows the library version numbers for each GCC release.

Problem

How can I know the libstdc++ version shipped with each gcc version? Is there an an easy way to get this info without the need to install the gcc?

Original source

Related problems