Linux: more 64 bit stuff

This commit is contained in:
Elias Naur 2006-07-11 21:00:39 +00:00
parent fe4fde649f
commit 90273174d5
1 changed files with 2 additions and 0 deletions

View File

@ -83,10 +83,12 @@ public final class Sys {
if (implementation.has64Bit()) {
try {
doLoadLibrary(lib_name + POSTFIX64BIT);
return;
} catch (UnsatisfiedLinkError e2) {
LWJGLUtil.log("Failed to load 64 bit library:" + e2.getMessage());
}
}
// Throw original error
throw e;
}
}