This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: c++ libraries


Roopesh Kohad wrote:
Hi,
    I understand that libstdc++ is standard C++ library implementing
functions in 32 standard headers. But then what are libsupc++ and
libsupc++convenience for?

The compiler *requires* certain library functions in order to implement the language -- this is the 'language support library'. This is things like dynamic cast helpers and exception matching. These are in libsubc++.

libsupc++ is the standalone language support library -- if you do not
use the STL, you only need to link with that.

libsupc++convenience is libsupc++ in a form that is incorporated into
libstdc++

nathan

--
Nathan Sidwell    ::   http://www.codesourcery.com   ::     CodeSourcery LLC
nathan@codesourcery.com    ::     http://www.planetfall.pwp.blueyonder.co.uk


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]