Merge pull request #87292 from akien-mga/3.x-libvpx-crimes
[3.x] Linux: Disable webm module on arm32, we can't build libvpx properly
This commit is contained in:
commit
3e7572304d
1 changed files with 7 additions and 1 deletions
|
@ -1,7 +1,13 @@
|
||||||
def can_build(env, platform):
|
def can_build(env, platform):
|
||||||
if env["arch"].startswith("rv"):
|
if env["arch"].startswith("rv"):
|
||||||
return False
|
return False
|
||||||
return platform not in ["iphone"]
|
if platform == "iphone":
|
||||||
|
return False
|
||||||
|
# Can work in theory but our libvpx/SCsub is too broken to compile NEON .s
|
||||||
|
# files properly on Linux arm32. Could be fixed by someone motivated.
|
||||||
|
if platform in ["x11", "server"] and env["arch"] in ["arm", "arm32"]:
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
def configure(env):
|
def configure(env):
|
||||||
|
|
Loading…
Reference in a new issue