混合 C C++ 时动态库中的链接问题代码
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里的问题是将函数声明为静态 - 在 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. Removingstatic
should solve the problem.Incidentally, the second function is misspelled - it should be
document_found
, notdocuemnt_found
.