Loading...
Logo
Processing Forum
So I know this has been asked before around, but I feel this time has some different factors.

Running the program (as a java application, not an applet) from eclipse works fine. Exporting it as a Mac application works fine, on my computer. It's only when I try and run the exported program on another computer that I get the "no jogl in java.library.path" message.

I have all my .jnilib files in a folder in my project. I went under buildPath->libraries for the project properties and set the native library location for jogl and glugen. I've tried using -Djava.library.path both in the projects default VM arguments, and in the VM arguments set at export.

Now obviously this isn't an immediate problem keeping me from working on it, but it will need to be fixed by the time I'm passing it to other people for testing.

Any thoughts?

Edit: as a side note, while I have the .jnilibs in a folder, my .jars are just sitting in the main directory, next to src, bin, data, etc. Does that matter?
Edit2: Just moved them into their own lib/ folder, evidently it does not affect anything. :P

Replies(2)

Still no reply after 6 months :p Having the same issue and only found it solved by copying those jnilibs files to /Library/Java/Extensions. But what if I want to share my application to people who don't know anything about that? Or on different platforms? Shouldn't it work by packaging everything as a single application, no matter what OS or installed items?
I actually ended up getting this working. Don't quite remember how unfortunately, but I think it involved taking all the spaces out of the path names (had to rename my Eclipse workspace folder, for instance).

Good luck. :P