本文介绍了LWJGL-在IntelliJ IDEA中找不到库:liblwjgl.dylib的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试在MacOS Big Sur 11.6(Apple M1芯片)上运行https://www.lwjgl.org/guide中的示例代码。我导入了所有必需的库,并在VM选项中写入-XstartOnFirstThread
,得到以下错误:
[LWJGL] Failed to load a library. Possible solutions:
a) Add the directory that contains the shared library to -Djava.library.path or -Dorg.lwjgl.librarypath.
b) Add the JAR that contains the shared library to the classpath.
[LWJGL] Enable debug mode with -Dorg.lwjgl.util.Debug=true for better diagnostics.
[LWJGL] Enable the SharedLibraryLoader debug mode with -Dorg.lwjgl.util.DebugLoader=true for better diagnostics.
Exception in thread "main" java.lang.UnsatisfiedLinkError: Failed to locate library: liblwjgl.dylib
at org.lwjgl.system.Library.loadSystem(Library.java:162)
at org.lwjgl.system.Library.loadSystem(Library.java:62)
at org.lwjgl.system.Library.<clinit>(Library.java:50)
at org.lwjgl.system.MemoryUtil.<clinit>(MemoryUtil.java:97)
at org.lwjgl.system.Pointer$Default.<clinit>(Pointer.java:67)
at org.lwjgl.system.Callback.<clinit>(Callback.java:41)
at com.company.HelloWorld.init(HelloWorld.java:38)
at com.company.HelloWorld.run(HelloWorld.java:23)
at com.company.HelloWorld.main(HelloWorld.java:113)
我尝试手动将其他JAR中的本机文件提取到项目文件夹中的一个单独的";ative/";文件夹中,并将-Dorg.lwjgl.librarypath=native
作为一个VM选项传递,但它完全没有任何改变。我不知道是否应该将";ative/";文件夹添加到库中,但它似乎也不会影响结果。
以下是来自LWJGL网站的示例代码:
package com.company;
import org.lwjgl.*;
import org.lwjgl.glfw.*;
import org.lwjgl.opengl.*;
import org.lwjgl.system.*;
import java.nio.*;
import static org.lwjgl.glfw.Callbacks.*;
import static org.lwjgl.glfw.GLFW.*;
import static org.lwjgl.opengl.GL11.*;
import static org.lwjgl.system.MemoryStack.*;
import static org.lwjgl.system.MemoryUtil.*;
public class HelloWorld {
// The window handle
private long window;
public void run() {
System.out.println("Hello LWJGL " + Version.getVersion() + "!");
init();
loop();
// Free the window callbacks and destroy the window
glfwFreeCallbacks(window);
glfwDestroyWindow(window);
// Terminate GLFW and free the error callback
glfwTerminate();
glfwSetErrorCallback(null).free();
}
private void init() {
// Setup an error callback. The default implementation
// will print the error message in System.err.
GLFWErrorCallback.createPrint(System.err).set();
// Initialize GLFW. Most GLFW functions will not work before doing this.
if ( !glfwInit() )
throw new IllegalStateException("Unable to initialize GLFW");
// Configure GLFW
glfwDefaultWindowHints(); // optional, the current window hints are already the default
glfwWindowHint(GLFW_VISIBLE, GLFW_FALSE); // the window will stay hidden after creation
glfwWindowHint(GLFW_RESIZABLE, GLFW_TRUE); // the window will be resizable
// Create the window
window = glfwCreateWindow(300, 300, "Hello World!", NULL, NULL);
if ( window == NULL )
throw new RuntimeException("Failed to create the GLFW window");
// Setup a key callback. It will be called every time a key is pressed, repeated or released.
glfwSetKeyCallback(window, (window, key, scancode, action, mods) -> {
if ( key == GLFW_KEY_ESCAPE && action == GLFW_RELEASE )
glfwSetWindowShouldClose(window, true); // We will detect this in the rendering loop
});
// Get the thread stack and push a new frame
try ( MemoryStack stack = stackPush() ) {
IntBuffer pWidth = stack.mallocInt(1); // int*
IntBuffer pHeight = stack.mallocInt(1); // int*
// Get the window size passed to glfwCreateWindow
glfwGetWindowSize(window, pWidth, pHeight);
// Get the resolution of the primary monitor
GLFWVidMode vidmode = glfwGetVideoMode(glfwGetPrimaryMonitor());
// Center the window
glfwSetWindowPos(
window,
(vidmode.width() - pWidth.get(0)) / 2,
(vidmode.height() - pHeight.get(0)) / 2
);
} // the stack frame is popped automatically
// Make the OpenGL context current
glfwMakeContextCurrent(window);
// Enable v-sync
glfwSwapInterval(1);
// Make the window visible
glfwShowWindow(window);
}
private void loop() {
// This line is critical for LWJGL's interoperation with GLFW's
// OpenGL context, or any context that is managed externally.
// LWJGL detects the context that is current in the current thread,
// creates the GLCapabilities instance and makes the OpenGL
// bindings available for use.
GL.createCapabilities();
// Set the clear color
glClearColor(1.0f, 0.0f, 0.0f, 0.0f);
// Run the rendering loop until the user has attempted to close
// the window or has pressed the ESCAPE key.
while ( !glfwWindowShouldClose(window) ) {
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); // clear the framebuffer
glfwSwapBuffers(window); // swap the color buffers
// Poll for window events. The key callback above will only be
// invoked during this call.
glfwPollEvents();
}
}
public static void main(String[] args) {
new HelloWorld().run();
}
}
罐子:
lwjgl-assimp-javadoc.jar lwjgl-nanovg-sources.jar lwjgl-par-javadoc.jar
lwjgl-assimp-sources.jar lwjgl-nanovg.jar lwjgl-par-sources.jar
lwjgl-assimp.jar lwjgl-nuklear-javadoc.jar lwjgl-par.jar
lwjgl-bgfx-javadoc.jar lwjgl-nuklear-sources.jar lwjgl-sources.jar
lwjgl-bgfx-sources.jar lwjgl-nuklear.jar lwjgl-stb-javadoc.jar
lwjgl-bgfx.jar lwjgl-openal-javadoc.jar lwjgl-stb-sources.jar
lwjgl-glfw-javadoc.jar lwjgl-openal-sources.jar lwjgl-stb.jar
lwjgl-glfw-sources.jar lwjgl-openal.jar lwjgl-vulkan-javadoc.jar
lwjgl-glfw.jar lwjgl-opengl-javadoc.jar lwjgl-vulkan-sources.jar
lwjgl-javadoc.jar lwjgl-opengl-sources.jar lwjgl-vulkan.jar
lwjgl-nanovg-javadoc.jar lwjgl-opengl.jar lwjgl.jar
本地人:
lwjgl-assimp-natives-macos.jar lwjgl-natives-macos.jar lwjgl-par-natives-macos.jar
lwjgl-bgfx-natives-macos.jar lwjgl-nuklear-natives-macos.jar lwjgl-stb-natives-macos.jar
lwjgl-glfw-natives-macos.jar lwjgl-openal-natives-macos.jar lwjgl-vulkan-natives-macos.jar
lwjgl-nanovg-natives-macos.jar lwjgl-opengl-natives-macos.jar
(从https://www.lwjgl.org/customize下载)
推荐答案
您在LWJGL定制器中为您的CPU体系结构选择了错误的本机代码。您选择了MacOS x64,但是M1不是x86,而是ARM。当前的LWJGL版本3.2.3不支持MacOS ARM。您必须在LWJGL定制器上使用3.3.0早期访问版本,然后选择MacOS arm64本机。
这篇关于LWJGL-在IntelliJ IDEA中找不到库:liblwjgl.dylib的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!