C ++ man pages in Ubuntu

On Ubuntu linux, I cannot get man pages for C ++ keywords. Is there some kind of package that I can install to fix this?

+6
c ++ linux ubuntu man
source share
5 answers
sudo apt-get install manpages-dev glibc-doc 

Look here for the STL.

+9
source share

check out this project: https://github.com/Aitjcize/cppman What generates manpages from cplusplus.com

+6
source share

In libstdC ++ 6-4.4-doc, manual pages for the STL, and not just the HTML document, will also be installed. The package manpages-posix-dev is also really good.

+4
source share

You must install the manpages-dev package:

 $ sudo apt-get install manpages-dev 
+1
source share

You may also consider installing libstdC ++ 6-4.4-doc, which installs the complete C ++ library documentation in HTML format created from doxygen comments (you can find it in /usr/share/doc/libstdc++6-4.4-doc/libstdc++/html/index.html and I think scrollkeeper indexes it). Remember to install the updated package if the g ++ version has changed.

0
source share

All Articles