使用 MINGW 构建 JNI DLL

发布于 2024-09-18 07:29:32 字数 822 浏览 4 评论 0原文

我正在尝试创建一个将调用 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 技术交流群。

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

发布评论

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

评论(2

梦明 2024-09-25 07:29:32

我应该添加以下参数:

-Wl,--kill-at

它将更改导出的符号格式。

I should've added following argument:

-Wl,--kill-at

It will change exported symbols format.

悲凉≈ 2024-09-25 07:29:32

如果您使用 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".

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