1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-07 19:53:17 +00:00

Merge pull request #67386 from akien-mga/3.x-webm-armv7-fixup

WebM: Fix Android armv7 build after #64839
This commit is contained in:
Rémi Verschelde
2022-10-14 16:34:25 +02:00

View File

@@ -312,7 +312,8 @@ if webm_cpu_arm:
or env["platform"] == "x11"
or env["platform"] == "server"
):
env_libvpx["ASFLAGS"] += "-mfpu=neon"
# Append to preserve base ASFLAGS on Android.
env_libvpx.Append(ASFLAGS=["-mfpu=neon"])
elif env["platform"] == "uwp":
env_libvpx["AS"] = "armasm"
env_libvpx["ASFLAGS"] = ""