set correct paths for ndll for linxuarm and linuxarm64 (raspberrypi)
and remove conflicting legacy includepaths in build.xml
This commit is contained in:
@@ -35,7 +35,7 @@ class RunScript
|
||||
|
||||
if (!rebuildBinaries) return;
|
||||
|
||||
var platforms = ["Windows", "Mac", "Mac64", "MacArm64", "Linux", "Linux64"];
|
||||
var platforms = ["Windows", "Mac", "Mac64", "MacArm64", "Linux", "Linux64", "LinuxArm", "LinuxArm64"];
|
||||
|
||||
for (platform in platforms)
|
||||
{
|
||||
@@ -70,14 +70,14 @@ class RunScript
|
||||
System.runCommand(limeDirectory, "neko", args.concat(["mac", toolsDirectory]));
|
||||
}
|
||||
|
||||
case "Linux":
|
||||
if (System.hostPlatform == LINUX && System.hostArchitecture != X64)
|
||||
case "Linux", "LinuxArm":
|
||||
if (System.hostPlatform == LINUX && System.hostArchitecture != X64 && System.hostArchitecture != ARM64)
|
||||
{
|
||||
System.runCommand(limeDirectory, "neko", args.concat(["linux", "-32", toolsDirectory]));
|
||||
}
|
||||
|
||||
case "Linux64":
|
||||
if (System.hostPlatform == LINUX && System.hostArchitecture == X64)
|
||||
case "Linux64", "LinuxArm64":
|
||||
if (System.hostPlatform == LINUX && (System.hostArchitecture == X64 || System.hostArchitecture == ARM64))
|
||||
{
|
||||
System.runCommand(limeDirectory, "neko", args.concat(["linux", "-64", toolsDirectory]));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user