I'm working on a game that's using Slick2d library, I'm using Eclipse IDE, 64-bit java 7, on Linux Ubuntu. In IDE i don't have any problems when i run the game (java-7 64-bit is also set for the project), but when i'm trying to run an exported jar, i get the following error:
java.lang.UnsatisfiedLinkError: no jinput-linux64 in java.library.path
I have the natives folder set properly using:
System.setProperty("org.lwjgl.librarypath", "/<my_natives_folder>");
I don't have "no lwjgl in java.library.path" problem, only this, and only when i run the exported jar.
I found some similar problems on the stack, but none of them seems to solve the problem why the game is running without errors in IDE but not from the jar.
Thanks for any help :)