tags:

views:

125

answers:

3

In Ubuntu linux I can't get any man pages for C++ keywords. Is there some kind of package I can install to fix this?

+2  A: 

You must install manpages-dev package :

$ sudo apt-get install manpages-dev
SjB
+4  A: 
sudo apt-get install manpages-dev glibc-doc

Look here too for STL.

nc3b
+1 for the STL Doxygen link, that's a great resource!
Johnsyweb
A: 

You could also consider installing libstdc++6-4.4-doc, which installs the full C++ library documentation in HTML format, generated from the doxygen comments (you can find it in /usr/share/doc/libstdc++6-4.4-doc/libstdc++/html/index.html, and I think that scrollkeeper indexes it). Remember to install the updated package when the installed g++ version changes.

Matteo Italia