我正在尝试加载库library.so,当我尝试if存在时返回true,但是当我使用dlopen返回库时不存在。
std::ifstream ifile("library.so"); if (ifile) {
cout << "Exist!" << std::endl; }
cout << "C++ dlopen demo\n\n";
// open the library cout << "Opening hello.so...\n"; void* handle = dlopen("library.so", RTLD_LAZY);
if (!handle) {
cerr << "Cannot open library: " << dlerror() << '\n';
return 1; }
答案 0 :(得分:2)
dlopen
在其可以搜索的路径中受到严格限制(保持简短:默认路径加上LD_LIBRARY_PATH
变量 - 有关完整列表,请参阅完整的documentation。您的ifstream
查看当前目录(无论它是什么),默认情况下,dlopen
考虑的路径中很可能不会包含这些内容。
解决方案包括:
/lib
或/usr/lib
)。