LWJGL Forum

Programming => Lightweight Java Gaming Library => Topic started by: Naps on October 20, 2011, 15:08:55

Title: LWJGL 2.8.1 link error - eclipse win7-64
Post by: Naps on October 20, 2011, 15:08:55
Running a Windows 7 64-bit system with eclipse IDE, I experience the following error message when trying to compile LWJGL2.8.1 dependant code:
Exception in thread "main" java.lang.UnsatisfiedLinkError: org.lwjgl.opengl.WindowsDisplay.nSetTitle(JJ)V
Anything within org.lwjgl.opengl.* seem to generate similar errors.

After suggestions from the irc I rolled back to LWJGL 2.7.1, which worked perfectly, though.
Title: Re: [BUG] LWJGL 2.8.1 link error - eclipse win7-64
Post by: sarobenalt on October 24, 2011, 17:59:34
Hi Naps,

I have LWJGL 2.8.1 running properly under Eclipse 3.7 (Indigo) with Win 7/64. Your error is a runtime (not compile time) problem trying to locate the native code. Are you building a standalone LWJGL-based Java app with Eclipse, or trying to integrate LWJGL into Eclipse itself as plugins? The techniques for resolving native code are very different for these two cases.

Steve