java - JOGL 32 vs. 64 bit libraries error -


I'm new to JOGL I'm Eclipse and I am using Jawsal Jar and DLL (yes, Windows OS). But, when I was searching for the jazal libraries, I downloaded the 32 bit version. I have 64 bit OS, but since I can run 32 bit apps I thought it would still be more appropriate. But the compiler is complaining: IA 32-bit .dll can not be loaded on an AMD 64-bit platform

Good, first of all, I thought Java Architecture has not been separated. Yes, I know that I am using the original libraries to link in the Windows OpenGL interface (API), but I want to include these code snippets in Java bytecode, so the compiler can use the 32 bit bit Do you? Thank you.

Since you have 64-bit OS, you have installed 64-bit JVM. 64-bit JVM can not use 32-bit DLL, so you need to download 64-bit or to install 32-bit JVM on your system, and Eclipse to use that JVM Will happen.

Comments