Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I download the source code to the GNU C++ Standard Library?

Tags:

I downloaded the GNU Standard C Library (glibc) source code at http://ftp.gnu.org/gnu/glibc/. Where can I find a similar download for their C++ Library?

I have googled around a bit and cannot seem to find it.

The only reason I need it is I want to see how it is implemented. So please don't give me links to binaries or to just the header files because it is the implementation source files that I am looking for.

like image 346
Matt Avatar asked Jun 03 '12 15:06

Matt


2 Answers

It's in the libstdc++-v3 directory in the g++ (gcc-c++) sources.

like image 153
Mike DeSimone Avatar answered Oct 20 '22 15:10

Mike DeSimone


GCC mirror sites: https://gcc.gnu.org/mirrors.html Looking for what you want.

like image 28
huoyao Avatar answered Oct 20 '22 17:10

huoyao