如何在os x上获得c手册页?

前端之家收集整理的这篇文章主要介绍了如何在os x上获得c手册页?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Ubuntu中,安装libstdc 6-x.x-doc之后,可以通过man获取文档,例如libstdc -4.8-doc:

man std::list
man std::weak_ptr
man std::ios_base

是否可以在OSX上安装c(使用brew或任何其他方法)的手册页?特别要求手册页的原因是我可以使用SHIFT-K从vim访问它们.

注意:我正在使用g的XCode版本:

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

解决方法

您可以从 here安装这些手册页.只需运行以下命令:

$git clone https://github.com/jeaye/stdman
$cd stdman
$./configure
$make install # as a user with appropriate permissions to install

猜你在找的Xcode相关文章