本地动态库

Local dynamic library

马上,我想说我从来没有使用过动态库,所以我什至不明白它们是如何正常工作的。

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

这是简单的动态库(名为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: 文件太短 在我的 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 片段为基础 联机帮助页(针对您的功能进行了修改):

       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);
       }

经过一些很好的回复后,我发现我做错了什么。

1) 我的库函数没有使用 extern "C",所以 dlsym 无法找到该函数。

2) 我不知道必须编译动态库 << 我真蠢。

我还是想知道有没有办法把未编译的代码当成库使用,不过我最初的问题已经解决了,谢谢大家