English 中文(简体)
在装上共用图书馆时有错误:libCstd.so.1:不能开立共同物体档案: 无此类档案或目录
原标题:error while loading shared libraries: libCstd.so.1: cannot open shared object file: No such file or directory

在装上共用图书馆时有错误:libCstd.so.1:不能开立共同物体档案: 无此类档案或目录。

Hello! 当我试图在Netbeans6.8与Sunudio 12.1.的Sun编辑一道开展C++项目时,我就发现这一错误。 如果能够检索所需信息,我就希望用dbx或NetBeans IDE分析记忆泄漏和记忆使用。 我不知道偷窃行为。 您是否认为使用Netbeans+Sunudio是实施C++应用的正确方式? 我在Windows上使用Netbeans,但我不了解视窗上的免费存储泄漏探测工具,我还尝试了Sunudio。

感谢!

问题回答

我不知道Sun s汇编者,但当你看到这一错误时,通常是因为有关图书馆的位置没有在共用图书馆装货机上登记。 通常可以通过将有关途径添加到<代码>/etc/ld.so.conf,然后运行ldconfig





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签