混合 C C++ 时动态库中的链接问题代码

发布于 2024-12-05 21:43:44 字数 437 浏览 0 评论 0原文

我有一个 C 动态库,由于一些需求更改,我必须进行一些重构。

我在一个 c 文件中有以下代码。

__attribute__((noinline))
static void *find_document(...)
{
  ...
}

bool docuemnt_found(const char *name) {
 ...
    find_document(...);
 ...
}

我将 docuemnt_found() 函数分离在不同的 cpp 文件中。现在 docuemnt_found() 函数无法链接到 find_document() 方法?

我尝试为 c 文件创建标头,然后使用 extern "C" 包含标头,但它不起作用。

我想保持 find_document() 内联。这里有什么遗漏或者有问题吗?

I had a C dynamic library, due to some requirement change I have to do some refactoring.

I had following code in one c file.

__attribute__((noinline))
static void *find_document(...)
{
  ...
}

bool docuemnt_found(const char *name) {
 ...
    find_document(...);
 ...
}

I separated the docuemnt_found() function in different cpp file. Now docuemnt_found() function cannot link to find_document() method?

I tried creating header for the c file and then include header using extern "C" but it did not work.

I want to keep find_document() inline. Is there anything missing here or something wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温馨耳语 2024-12-12 21:43:44

这里的问题是将函数声明为静态 - 在 C 中,这表示它应该可供同一编译单元(.c 文件)内的其他函数使用,但不能供编译单元之外的其他函数使用。文件。删除 static 应该可以解决问题。

顺便说一句,第二个函数拼写错误 - 它应该是 document_found,而不是 docuemnt_found

The problem here is the declaration of the function as static - in C, this says that it should be available to other functions within the same compilation unit (.c file), but not to other functions outside the file. Removing static should solve the problem.

Incidentally, the second function is misspelled - it should be document_found, not docuemnt_found.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文