Jogamp on Intel i5-6???
Posted by Daniel on Jul 06, 2017; 11:55am
URL: https://forum.jogamp.org/Jogamp-on-Intel-i5-6-tp4038059.html
I have a mysterious problem with jogamp/j3d ONLY on PCs / Laptops with an Intel i5 6th generation (for example I5-6500T).
Can't get simplest code running on machines with 6th gen I5 ! But it runs on 2nd gen (with jre 8_51), 3rd (jre 8_131), 4th (jre 8_131), Windows 7 and Windows 10. But not on I5-6*
public Hello() {
SimpleUniverse universe = new SimpleUniverse();
BranchGroup group = new BranchGroup();
group.addChild(new ColorCube(0.3));
universe.getViewingPlatform().setNominalViewingTransform();
universe.addBranchGraph(group);
}
Errors:
Warning: Caught Exception while retrieving executable temp base directory:
java.io.IOException: Could not determine a temporary executable directory
>>> I think that's the main problem... found no way to solve this "known issue"
Exception in thread "main" java.lang.UnsatisfiedLinkError: Can't load library: C:\Users\LocAdmWS!\Desktop\DanielTest\hello3d_jar\natives\windows-i586\\gluegen-rt.dll
>>> probably related to error above
Any Help ? THX