set correct paths for ndll for linxuarm and linuxarm64 (raspberrypi)

and remove conflicting legacy includepaths in build.xml
This commit is contained in:
Patrick Gutlich
2024-08-18 17:12:47 +02:00
parent 95baa58eff
commit 40764acbf3
6 changed files with 57 additions and 89 deletions

View File

@@ -107,6 +107,14 @@ class HTML5Helper
{
suffix += "32";
}
else if( System.hostArchitecture == ARMV7)
{
suffix += "Arm";
}
else if( System.hostArchitecture == ARM64)
{
suffix += "Arm64";
}
else
{
suffix += "64";