neuromancer
neuromancer

Reputation: 55499

C++ man pages in Ubuntu

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?

Upvotes: 7

Views: 8684

Answers (5)

Aitjcize
Aitjcize

Reputation: 187

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

Upvotes: 6

ygram
ygram

Reputation: 972

The libstdc++6-4.4-doc will install the man pages for STL too, not only the HTML doc. The manpages-posix-dev package is also really good to have.

Upvotes: 4

Matteo Italia
Matteo Italia

Reputation: 126807

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.

Upvotes: 0

nc3b
nc3b

Reputation: 16240

sudo apt-get install manpages-dev glibc-doc

Look here too for STL.

Upvotes: 11

Sajad Bahmani
Sajad Bahmani

Reputation: 17459

You must install manpages-dev package :

$ sudo apt-get install manpages-dev

Upvotes: 0

Related Questions