使用 MINGW 构建 JNI DLL
我正在尝试创建一个将调用 Qt 的 DLL(目前我无法使用 Jambi 来实现我需要的功能)。我有一个简单的 Java 方法:
public final native int createChild(int handle);
我在 Visual Studio Express 2010 中创建了 C 项目并能够构建 DLL。
然后我在 Qt Creator 中创建了一个项目并将我的源代码移到那里。我尝试尽我所知配置构建,但我得到的只是:
java.lang.UnsatisfiedLinkError: tools.proofofconcept.control.EmbedderComposite.createChild(I)I
我的猜测是该符号未从 DLL 正确导出。我添加了 -D_JNI_IMPLMENTATION_ 链接器参数:
g++ -D_JNI_IMPLEMENTATION_ -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -shared -mthreads -Wl -Wl,--out-implib,debug\libqt_integration.a -o debug\qt_integration.dll debug/dllmain.o debug/nativecode.o debug/qmfcapp.o debug/qwinwidget.o debug/moc_qwinwidget.o -L"c:\Qt\2010.05-rc1\qt\lib" -lQtGuid4 -lQtCored4
I am trying to create a DLL that will call Qt (currently I can't use Jambi for the functionality I need). I have a simple Java method:
public final native int createChild(int handle);
I created C project in Visual Studio Express 2010 and was able to build the DLL.
Then I created a project in Qt creator and moved my sources there. I tried to configure the build to a best of my knowledge but all I get is:
java.lang.UnsatisfiedLinkError: tools.proofofconcept.control.EmbedderComposite.createChild(I)I
My guess is that symbol is not properly exported from DLL. I added -D_JNI_IMPLEMENTATION_ linker arg:
g++ -D_JNI_IMPLEMENTATION_ -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -shared -mthreads -Wl -Wl,--out-implib,debug\libqt_integration.a -o debug\qt_integration.dll debug/dllmain.o debug/nativecode.o debug/qmfcapp.o debug/qwinwidget.o debug/moc_qwinwidget.o -L"c:\Qt\2010.05-rc1\qt\lib" -lQtGuid4 -lQtCored4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我应该添加以下参数:
它将更改导出的符号格式。
I should've added following argument:
It will change exported symbols format.
如果您使用 Qt,请确保使用哪种配置。默认情况下,使用“default”配置(文件夹“mkspecs/default”),对于 win32,这会导致“UnsatisfiedLinkError”。
If you are using Qt make sure which configuration is used. By default "default" configuration is used (folder "mkspecs/default") and for win32 this causes "UnsatisfiedLinkError".