gpt4 book ai didi

c++ - 从 .so 调用符号

转载 作者:太空狗 更新时间:2023-10-29 23:36:24 28 4
gpt4 key购买 nike

我有一个 .so 库,并在其上运行 nm -gC

我看到这样的输出:

0011a011 W void my_fun< unsigned char>(unsigned char*, unsigned char, int)

我可以包含的头文件中没有一个包含这个函数,但我想从我的 cpp 文件中调用它。

我该怎么做?

最佳答案

None of the headers that I can include contain this function,

来自nm man page :

W

w

The symbol is a weak symbol that has not been specifically tagged as a weak object symbol.

所以它是一个弱符号。如果没有一个头文件声明它,那么它可能没有被定义。您可能仍会尝试自己声明它并调用它以防万一(您需要链接到库):

void my_fun(unsigned char*, unsigned char, int);

// ...

my_fun(foo, bar, baz);

如果这是一个 C++ 函数,那么您不能以可移植的方式使用 dlopen() API。

关于c++ - 从 .so 调用符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16243443/

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