libstdc++.a 丢失
我正在 Ubuntu 8.04 / 32 位(作为虚拟机)上工作。 在对非 min 项目执行一些 make 时,出现错误:
g++: /usr/lib/libstdc++.a: No such file or directory
我该怎么办? gcc 软件包是通过 synaptic 安装的,我错过了什么?
谢谢, 卢西恩
I'm working on a Ubuntu 8.04 / 32 bit (as virtual machine). While performing some makes on a project that is not min, I get the error:
g++: /usr/lib/libstdc++.a: No such file or directory
What should I do? the gcc package is installed through synaptic, what do i miss?
Thanks,
Lucian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 Ubuntu 8.04(又名 Hardy),您需要安装 libstdc++6-4.2-dbg 软件包。
如果您将来需要查找此类文件,请安装 apt-file(如果尚未安装)并使用 apt-file 搜索。
For Ubuntu 8.04 (aka hardy), you need to install the libstdc++6-4.2-dbg package.
If you need to find files like this in future, install apt-file if it isn't already installed and use apt-file search.
看来您正在使用 C++ 进行开发,正如库名称中的“++”所暗示的那样。 在这种情况下,您还需要安装 g++,猜测这将安装所需的库等。
要一步安装 gcc、g++ 和其他实用程序(例如 make),您可以安装 build-essential 元包。
您可能还会发现这些软件包很有用,因为它们安装了相关文档:glibc-doc manpages-dev gcc-4.2-doc libstdc++6-4.2-doc
It seems you are developing in C++, as "++" in the name of the library suggests. In this case, you'll need to install g++ as well, guess this will install the required library, among other things.
To install gcc, g++, and other utilities like make in one step, you can install build-essential meta-package.
You may also find these packages useful, as they install related documentation: glibc-doc manpages-dev gcc-4.2-doc libstdc++6-4.2-doc