为在 JNA 中使用的依赖 C 程序创建共享库

问题描述

我是 JNA 和 C 的新手,所以我在为依赖的 C 程序创建共享库时遇到了麻烦。 我已经尝试过只使用 1 个 C 程序。

基本上我的代码是这样的:

file1.c

#include <stdio.h>
#include header.h

void function1(unsigned char *parm){

      // --relevant code

      function 2(parm)
}

header.h

#ifndef    header_H
#define    header_H
unsigned char name;
void function2(unsigned char*);
#endif

file2.c

#include header.h
void function2(unsigned char*) {
// relevant codes
 printf (" hello");

}

我正在使用 windows 终端来编译和创建共享库。 我必须通过JNA/JNI在java程序中使用function1()。

此外,由于这是项目要求,我无法更改 C 文件或头文件

在编译期间,我能够为每个程序创建(.o 文件)。

gcc -c -Wall   file1.c file2.c

-> 为 prog1 制作共享库时

 gcc -shared -o newlib.dll file1.o

抛出prog2的未定义引用错误

.c:(.text+0x16a): undefined reference to `function2()

-> 像这样创建共享库时

 gcc -shared -o newlib.dll file1.o file2.o

它的抛出错误就像

multiple deFinition of char name;

-> 我不知道如何创建包含两个程序的共享库。

谁能分享一些资源来看看。

解决方法

对于错误 multiple definition of char name
因为file1.cfile2.c都包含header.h,所以unsigned char name被定义了两次。
头文件应如下所示:

#ifndef HEADER_H
#define HEADER_H
// your code
#endif // HEADER_H
,

我通过为file2创建共享库解决了上述问题,然后通过链接创建的共享库来创建file1的目标文件。然后我们也可以使用它的目标文件轻松地为 file1 创建共享库。 代码会像

gcc -c -Wall -fPIC file2.c
gcc -shared -o libfoo.so file2.o
gcc -c -nostartfiles -Wl,--entry=function1 -L. -Wall file1.c -lfoo
gcc -shared -L. -o newLib.so file1.o -lfoo

由于我没有 main 函数,我必须使用 -nostartfiles 标志并明确定义入口点。