xcode - how to get c++ man pages on os x? -
in ubuntu, after install libstdc++6-x.x-doc, docs available via man, example libstdc++-4.8-doc:
man std::list man std::weak_ptr man std::ios_base
is possible install man pages c++ (using brew or other means) on osx? reason requiring man pages can access them vim using shift-k
.
note: i'm using xcode version of g++:
snowch$ g++ -v configured with: --prefix=/applications/xcode.app/contents/developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1 apple llvm version 6.1.0 (clang-602.0.53) (based on llvm 3.6.0svn) target: x86_64-apple-darwin14.5.0 thread model: posix
you can install man pages here. run following commands:
$ git clone https://github.com/jeaye/stdman $ cd stdman $ ./configure $ make install # user appropriate permissions install
Comments
Post a Comment