Name Date Size #Lines LOC

..--

config/H26-Jul-2015-58,64351,678

include/H26-Jul-2015-149,48989,592

libmath/H26-Jul-2015-1,4741,069

libsupc++/H26-Jul-2015-6,4664,050

scripts/H26-Jul-2015-1,3601,038

src/H26-Jul-2015-9,8346,766

ChangeLogHD26-Jul-201515.7 KiB480352

ChangeLog-1998HD26-Jul-201532.7 KiB943729

ChangeLog-1999HD26-Jul-2015122.2 KiB3,5462,615

ChangeLog-2000HD26-Jul-2015197 KiB5,6454,304

ChangeLog-2001HD26-Jul-2015214.6 KiB6,0684,741

ChangeLog-2002HD26-Jul-2015206.3 KiB5,5914,367

ChangeLog-2003HD26-Jul-2015330.5 KiB8,6207,012

ChangeLog-2004HD26-Jul-2015252.1 KiB6,7085,250

ChangeLog-2005HD26-Jul-2015223.9 KiB5,4694,631

ChangeLog-2006HD26-Jul-2015239.6 KiB5,5294,747

Makefile.amHD26-Jul-20153.7 KiB11969

Makefile.inHD26-Jul-201525.5 KiB801690

READMEHD26-Jul-20153.3 KiB9774

acinclude.m4HD26-Jul-201576.8 KiB2,3982,178

aclocal.m4HD26-Jul-201521 KiB592528

config.h.inHD26-Jul-201526.5 KiB1,095778

configureHD26-Jul-20153 MiB111,81897,165

configure.acHD26-Jul-201512.6 KiB408351

configure.hostHD26-Jul-20158.5 KiB313294

crossconfig.m4HD26-Jul-201512.2 KiB419402

fragment.amHD26-Jul-2015755 2617

linkage.m4HD26-Jul-201518 KiB543501

README

1file: libstdc++-v3/README
2
3New users may wish to point their web browsers to the file
4documentation.html in the 'docs/html' subdirectory.  It contains brief
5building instructions and notes on how to configure the library in
6interesting ways.
7
8Instructions for configuring and building appear in
9docs/html/install.html.
10
11This directory contains the files needed to create an ISO Standard C++
12Library.
13
14It has subdirectories:
15
16  docs
17    Files in HTML and text format that document usage, quirks of the
18    implementation, and contributor checklists.
19
20  include
21    All header files for the C++ library are within this directory,
22    modulo specific runtime-related files that are in the libsupc++
23    directory.
24
25    include/std
26      Files meant to be found by #include <name> directives in
27      standard-conforming user programs.
28
29    include/c
30      Headers intended to directly include standard C headers.
31      [NB: this can be enabled via --enable-cheaders=c]
32
33    include/c_std
34      Headers intended to include standard C headers, and put select
35      names into the std:: namespace.
36      [NB: this is the default, and is the same as --enable-cheaders=c_std]
37
38    include/bits
39      Files included by standard headers and by other files in
40      the bits directory.
41
42    include/backward
43      Headers provided for backward compatibility, such as <iostream.h>.
44      They are not used in this library.
45
46    include/ext
47      Headers that define extensions to the standard library.  No
48      standard header refers to any of them.
49
50  scripts
51    Scripts that are used during the configure, build, make, or test
52    process.
53
54  src
55    Files that are used in constructing the library, but are not
56    installed.
57
58  testsuites/[backward, demangle, ext, performance, thread, 17_* to 27_*]
59    Test programs are here, and may be used to begin to exercise the
60    library.  Support for "make check" and "make check-install" is
61    complete, and runs through all the subdirectories here when this
62    command is issued from the build directory.  Please note that
63    "make check" requires DejaGNU 1.4 or later to be installed.  Please
64    note that "make check-script" calls the script mkcheck, which
65    requires bash, and which may need the paths to bash adjusted to
66    work properly, as /bin/bash is assumed.
67
68Other subdirectories contain variant versions of certain files
69that are meant to be copied or linked by the configure script.
70Currently these are:
71
72  config/abi
73  config/cpu
74  config/io
75  config/locale
76  config/os
77
78In addition, two subdirectories are convenience libraries:
79
80  libmath
81    Support routines needed for C++ math. Only needed if the
82    underlying "C" implementation is non-existent, in particular
83    required or optimal long double, long long, and C99 functionality.
84
85  libsupc++
86    Contains the runtime library for C++, including exception
87    handling and memory allocation and deallocation, RTTI, terminate
88    handlers, etc.
89
90Note that glibc also has a bits/ subdirectory.  We will either
91need to be careful not to collide with names in its bits/
92directory; or rename bits to (e.g.) cppbits/.
93
94In files throughout the system, lines marked with an "XXX" indicate
95a bug or incompletely-implemented feature.  Lines marked "XXX MT"
96indicate a place that may require attention for multi-thread safety.
97