udpate default version

This commit is contained in:
Victor Shcherb 2018-07-23 21:27:36 +02:00
parent 2802147e42
commit 42e8c8ce72
2 changed files with 2 additions and 2 deletions

View file

@ -29,4 +29,4 @@ function compile {
compile compile
copyLibs linux amd64 amd64 so copyLibs linux amd64 amd64 so
# copyLibs linux i686 x86 so copyLibs linux i686 x86 so

View file

@ -259,7 +259,7 @@ public class NativeLibrary {
if (osname.startsWith("sunos")) if (osname.startsWith("sunos"))
osname = "solaris"; osname = "solaris";
if (osarch.startsWith("i") && osarch.endsWith("86")) if (osarch.startsWith("i") && osarch.endsWith("86"))
osarch = "amd64"; osarch = "x86";
String libname = libBaseName + "-" + osname + '-' + osarch + ".lib"; String libname = libBaseName + "-" + osname + '-' + osarch + ".lib";
// try a bundled library // try a bundled library