This commit is contained in:
bombcar 2021-11-25 13:38:00 -06:00
parent 87faadb975
commit 794abfdb50

View File

@ -116,7 +116,7 @@ abstract class LuaStateFactory {
else if (SystemUtils.IS_OS_FREE_BSD && Architecture.IS_OS_X86) "native.32.bsd.so"
else if (SystemUtils.IS_OS_LINUX && Architecture.IS_OS_ARM) "native.32.arm.so"
else if (SystemUtils.IS_OS_LINUX && Architecture.IS_OS_ARM) "native.64.arm.so"
else if (SystemUtils.IS_OS_LINUX && Architecture.IS_OS_A64) "native.64.arm.so"
else if (SystemUtils.IS_OS_LINUX && Architecture.IS_OS_X64) "native.64.so"
else if (SystemUtils.IS_OS_LINUX && Architecture.IS_OS_X86) "native.32.so"
@ -419,4 +419,4 @@ abstract class LuaStateFactory {
private def isOSArchMatch(archPrefix: String): Boolean = OS_ARCH != null && OS_ARCH.startsWith(archPrefix)
}
}
}