I received this - no lwjgl64 in java.library.path, what should I do now?

540    Asked by ElizabethClarke in Java , Asked on Oct 11, 2022

Okay, so I know I need to set the path to the native files. I can do this in Eclipse, by going to the VM arguments and using -Djava.library.path=, but when I export, it says that the VM arguments aren't kept after exporting, but it can be set in the console while running it. I am running Mac OS X. How do I set that using Terminal?

Answered by Damini das

For the no lwjgl64 in java.library.path -

It should be exactly the same, just provide -Djava.library.path="your_path" to java when you run it:

java -Djava.library.path="your_path" -classpath "your_classpath" your.main.Class



Your Answer

Interviews

Parent Categories