gpt4 book ai didi

c++ - 本地动态库

转载 作者:行者123 更新时间:2023-11-30 01:43:25 29 4
gpt4 key购买 nike

马上,我想说我从未使用过动态库,所以我什至不了解它们是如何正常工作的。

我想要运行一个完全加载的代码,并且在一些触发(可能是用户交互)之后我想要加载一个特定的库并在该库中执行一个函数。最好事后关闭它。本质上允许我在运行时更改它并重新加载它。

这是简单的动态库(名为dynlib.so,与主代码位于同一目录):

int getInt(int arg_0)
{
return (arg_0 + 7);
}

这是主程序:

#include <iostream>
#include <dlfcn.h>

int main() {
void *lib_handle = dlopen("./dynlib.so", RTLD_LAZY | RTLD_NOW);
if (!lib_handle) {
fprintf(stderr, "%s\n", dlerror());
exit(EXIT_FAILURE);
}

typedef int (*func_ptr)(int);
func_ptr func = (func_ptr)dlsym(lib_handle, "getInt");
std::cout << func(13);

dlclose(lib_handle);
}

我正在编译它使用:g++ -std=c++11 -ldl loadlibtest.cpp -o main

我捕获的错误是 ./libshared.so: file too short 在我的 if (!lib_handle) {.

最佳答案

它对我来说很好用。我用

编译了 dynlib.so
$ gcc dynlib.c -fPIC -shared -o dynlib.so

(显然,您需要使用 extern "C" 将其编译为 C 或 C++ 以避免名称混淆)。

并且我需要在 g++ 调用中的源文件之后放置 -ldl

海湾合作委员会:4.8.5; g++: 5.3.0


dlsym 也可能会失败,并且从 void* 转换为函数指针在技术上是 UB。你应该基于 usage snippet from the manpage (针对您的功能进行了修改):

       dlerror();    /* Clear any existing error */

/* Writing: func = (int (*)(int)) dlsym(handle, "getInt");
would seem more natural, but the C99 standard leaves
casting from "void *" to a function pointer undefined.
The assignment used below is the POSIX.1-2003 (Technical
Corrigendum 1) workaround; see the Rationale for the
POSIX specification of dlsym(). */

*(void **) (&func) = dlsym(handle, "getInt");

if ((error = dlerror()) != NULL) {
fprintf(stderr, "%s\n", error);
exit(EXIT_FAILURE);
}

关于c++ - 本地动态库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37844329/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com