linux – 如何在Ubuntu 10.04中安装C API文档?

前端之家收集整理的这篇文章主要介绍了linux – 如何在Ubuntu 10.04中安装C API文档?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经安装了 gcc.

为男人2 cout

root@kota-laptop:/# man 2 cout
No manual entry for cout in section 2

root@kota-laptop:/# man 2 printf
No manual entry for printf in section 2
See 'man 7 undocumented' for help when manual pages are not available.

解决方法

安装gcc不会引入开发人员联机帮助页.

sudo aptitude install manpages-dev manpages-posix-dev

这将安装POSIX和C开发的文档.

编辑,因为Ubuntu的包列表网站很奇怪

对于C docs,您可以安装libstdc 6-4.3-doc软件包或libstdc 6-4.4-doc,具体取决于您安装的GCC(对于模糊命名而言).

> 4.3:http://packages.ubuntu.com/search?keywords=libstdc%2B%2B6-4.3-doc
> 4.4:http://packages.ubuntu.com/search?suite=default&section=all&arch=any&searchon=names&keywords=libstdc%2B%2B6-4.4-doc

我不使用Ubuntu,所以我只能假设它是:sudo aptitude install libstdc 6-4.4-doc

编辑下面的东西是狡猾的,留下参考

但是,Ubuntu没有任何简易安装的C联机帮助页.为此,您必须自己从GNU libstdc文档安装联机帮助页,可以在他们的FTP站点上找到:ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/

您将需要下载适合您的libstdc版本的那些.

原文链接:https://www.f2er.com/linux/394161.html

猜你在找的Linux相关文章