在 Mac 上使用 JOCL 的帮助

发布于 2024-10-16 19:32:03 字数 896 浏览 0 评论 0原文

我正在尝试在我的 Mac 上运行本教程

本教程适用于 Windows,并打包了 jocl 版本 1.3 (JOCL-0.1.3a-beta.jar) 和适用于 Windows 的本机 jocl dll (JOCL-windows-x86_64.dll)。

获得代码后,我基本上摆脱了 jocl 1.3 jar 和 dll 并用 最新版本替换它jocl 1.4 jar,它应该打包 Mac 和 Windows 的资源。

执行此操作后,当我运行教程时,出现以下错误:

Error while loading native library "JOCL-apple-x86_64" with base name "JOCL"
Operating system name: Mac OS X
Architecture         : x86_64
Architecture bit size: 64
Stack trace from the attempt to load the library as a resource:
java.lang.NullPointerException: No resource found with name '/lib/libJOCL-apple-x86_64.dynlib'

看起来 jar 资源中缺少 libJOCL-apple-x86_64.dynlib 动态库。

我不是 Java 专家,我不知道下一步该尝试什么。

任何帮助表示赞赏!

I am trying to run this tutorial on my mac.

The tutorial is for windows, and packs jocl version 1.3 (JOCL-0.1.3a-beta.jar) and the native jocl dll for windows (JOCL-windows-x86_64.dll).

After getting the code, I basically got rid of the jocl 1.3 jar and the dll and substituted it with the latest jocl 1.4 jar, that should pack resources for both mac and windows.

Afer doing this, when I run the tutorial I get the following error:

Error while loading native library "JOCL-apple-x86_64" with base name "JOCL"
Operating system name: Mac OS X
Architecture         : x86_64
Architecture bit size: 64
Stack trace from the attempt to load the library as a resource:
java.lang.NullPointerException: No resource found with name '/lib/libJOCL-apple-x86_64.dynlib'

Looks like the libJOCL-apple-x86_64.dynlib dynamic library is missing from the resources of the jar.

I am not a Java expert and I have no idea what to try next.

Any help appreciated!

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

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

发布评论

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

评论(2

高冷爸爸 2024-10-23 19:32:03

我对 jocl.org 不太了解(我是 http://jocl.jogamp.org 的作者)但看起来您需要的一切都在 lib 文件夹中。尝试在 Mac 上加载 libJOCL-apple-x86_64.dynlib 而不是 libJOCL-apple-x86_64.jnilib 可能是 jocl.org 的错误。但这只是一个疯狂的猜测。

i don't know much about jocl.org (i am the author of http://jocl.jogamp.org) but it looks like all you should need is in the lib folder. It could be a bug of jocl.org to try to load libJOCL-apple-x86_64.dynlib instead of libJOCL-apple-x86_64.jnilib on your mac. But thats only a wild guess.

陪你搞怪i 2024-10-23 19:32:03

使用 jar 来提取存档 &将 /lib/libJOCL-apple-x86_64.jnilib 重命名为 /lib/libJOCL-apple-x86_64.dynlib 。
然后再次使用jar重新打包。

use jar to extract the archive & rename /lib/libJOCL-apple-x86_64.jnilib to /lib/libJOCL-apple-x86_64.dynlib .
then re-package using jar again.

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