Brendan Miller wrote: > Often I want to see what extensions that GCC supports for C++. Some of > this stuff is in the manual, but more often than not I end up finding > docs on third party web sites, or on mailing lists. I'm wondering > where the official docs are? Go to gcc.gnu.org and click on "Manual". > For example: > __FUNCTION__ > __PRETTY_FUNCTION__ > > are useful GCC specific variables for C++, but I can't seem to find > them documented in the manual. I only see them documented here: > > http://www.redhat.com/docs/manuals/enterprise/RHEL-4-Manual/gcc/function-names.html That link is just a copy of the gcc documentation from whatever version of gcc happens to be shipped with RHEL4, but formatted with a Red Hat stylesheet. The corresponding page on the gcc site is <http://gcc.gnu.org/onlinedocs/gcc/Function-Names.html>. > Is there some place that really lists everything? Index, table of contents? <http://gcc.gnu.org/onlinedocs/gcc/index.html#toc_Top> <http://gcc.gnu.org/onlinedocs/gcc/Keyword-Index.html> <http://gcc.gnu.org/onlinedocs/gcc/Option-Index.html> Brian