- make 64bit default for native libraries (e.g. libbulletjme32.so for 32bit)

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7411 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
nor..67 14 years ago
parent 73517c1c52
commit 4bb937b155
  1. 8
      engine/src/desktop/com/jme3/system/Natives.java

@ -151,7 +151,7 @@ public class Natives {
extractNativeLib("windows", "jinput-raw_64");
}
if(needNativeBullet){
extractNativeLib("windows", "bulletjme_64");
extractNativeLib("windows", "bulletjme");
}
break;
case Windows32:
@ -166,7 +166,7 @@ public class Natives {
extractNativeLib("windows", "jinput-raw");
}
if(needNativeBullet){
extractNativeLib("windows", "bulletjme");
extractNativeLib("windows", "bulletjme64");
}
break;
case Linux64:
@ -180,7 +180,7 @@ public class Natives {
extractNativeLib("linux", "openal64");
}
if(needNativeBullet){
extractNativeLib("linux", "bulletjme64");
extractNativeLib("linux", "bulletjme");
}
break;
case Linux32:
@ -194,7 +194,7 @@ public class Natives {
extractNativeLib("linux", "openal");
}
if(needNativeBullet){
extractNativeLib("linux", "bulletjme");
extractNativeLib("linux", "bulletjme32");
}
break;
case MacOSX_PPC32:

Loading…
Cancel
Save