NameDateSize

..22-Dec-201914

acconfig.hH A D05-Jan-200410.5 KiB

acinclude.m4H A D24-Dec-200479 KiB

aclocal.m4H A D24-Dec-200486.4 KiB

ChangeLogH A D24-Dec-2004253.1 KiB

ChangeLog-2000H A D05-Jan-2004351.8 KiB

ChangeLog-2001H A D05-Jan-2004214.6 KiB

config/H18-Jan-201810

config.h.inH A D05-Jan-200425.3 KiB

configureH A D24-Dec-2004700.7 KiB

configure.inH A D24-Dec-200417.6 KiB

configure.targetH A D09-Apr-20055.3 KiB

docs/H18-Jan-20185

include/H18-Jan-201812

libio/H18-Jan-201821

libmath/H18-Jan-201812

libsupc++/H18-Jan-201835

Makefile.amH A D05-Jan-20044.9 KiB

Makefile.inH A D05-Jan-200416.4 KiB

mkcheck.inH A D05-Jan-200414.6 KiB

po/H18-Jan-201810

READMEH A D05-Jan-20043.6 KiB

src/H18-Jan-201833

testsuite/H18-Jan-201829

testsuite_flags.inH A D05-Jan-20041.4 KiB

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/c_shadow
39      Headers intended to shadow standard C headers provided by an
40      underlying OS or C library, and other headers depended on directly
41      by C++ headers (e.g. unistd.h).  These are meant to wrap the names
42      defined there into the _C_legacy namespace.
43      [NB: this can be enabled via --enable-cheaders=c_shadow]
44
45    include/bits
46      Files included by standard headers and by other files in
47      the bits directory. 
48
49    include/backward
50      Headers provided for backward compatibility, such as <iostream.h>.
51      They are not used in this library.
52
53    include/ext
54      Headers that define extensions to the standard library.  No
55      standard header refers to any of them.
56
57  src
58    Files that are used in constructing the library, but are not
59    installed.
60
61  testsuites/[thread, 17_* to 27_*]
62    Test programs are here, and may be used to begin to exercise the 
63    library.  Support for "make check" and "make check-install" is
64    complete, and runs through all the subdirectories here when this
65    command is issued from the build directory.  Please note that
66    "make check" requires DejaGNU 1.4 or later to be installed.  Please
67    note that "make check-script" calls the script mkcheck, which
68    requires bash, and which may need the paths to bash adjusted to
69    work properly, as /bin/bash is assumed.
70
71Other subdirectories contain variant versions of certain files
72that are meant to be copied or linked by the configure script.
73Currently these are:
74
75  config/cpu
76  config/os
77  config/io
78  config/locale
79
80In addition, three subdirectories are convenience libraries:
81
82  libio
83    Contains the subset of the GNU libio library needed for
84    C++. Currently not used.
85
86  libmath
87    Support routines needed for C++ math. Only needed if the
88    underlying "C" implementation is non-existent, in particular
89    required or optimal long double, long long, and C99 functionality.
90
91  libsupc++
92    Contains the runtime library for C++, including exception
93    handling and memory allocation and deallocation, RTTI, terminate
94    handlers, etc.
95
96Note that glibc also has a bits/ subdirectory.  We will either
97need to be careful not to collide with names in its bits/
98directory; or rename bits to (e.g.) cppbits/.
99
100In files throughout the system, lines marked with an "XXX" indicate
101a bug or incompletely-implemented feature.  Lines marked "XXX MT"
102indicate a place that may require attention for multi-thread safety.
103