Add amd64 architecture (using a temporary path)

This commit is contained in:
CalDescent 2022-08-06 11:47:36 +01:00
parent d10ff49dcb
commit 3aac580f2c

View File

@ -82,6 +82,9 @@ public class LiteWalletJni {
else if (osName.equals("Linux") && osArchitecture.equals("aarch64")) {
libPath = "/home/pi/librust.so";
}
else if (osName.equals("Linux") && osArchitecture.equals("amd64")) {
libPath = "/etc/qortal/librust.so";
}
else {
LOGGER.info("Library not found for OS: {}, arch: {}", osName, osArchitecture);
return;