Linux: Fix arm32 build for OIDN and Embree
Still paying the cost of not having refactored all architecture handling in the 3.x branch so we have this broken hybrid of arch/bits which is unreliable.
This commit is contained in:
parent
62858097aa
commit
ae34c85a87
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ def can_build(env, platform):
|
||||||
# Note: oneDNN doesn't support ARM64, OIDN needs updating to the latest version
|
# Note: oneDNN doesn't support ARM64, OIDN needs updating to the latest version
|
||||||
supported_platform = platform in ["x11", "osx", "windows", "server"]
|
supported_platform = platform in ["x11", "osx", "windows", "server"]
|
||||||
supported_arch = env["bits"] == "64"
|
supported_arch = env["bits"] == "64"
|
||||||
if env["arch"] == "arm64":
|
if env["arch"].startswith("arm"):
|
||||||
supported_arch = False
|
supported_arch = False
|
||||||
if env["arch"].startswith("ppc"):
|
if env["arch"].startswith("ppc"):
|
||||||
supported_arch = False
|
supported_arch = False
|
||||||
|
|
|
@ -3,7 +3,7 @@ def can_build(env, platform):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# Depends on Embree library, which only supports x86_64 and aarch64.
|
# Depends on Embree library, which only supports x86_64 and aarch64.
|
||||||
if env["arch"].startswith("rv") or env["arch"].startswith("ppc"):
|
if env["arch"] in ["arm", "arm32"] or env["arch"].startswith("rv") or env["arch"].startswith("ppc"):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if platform == "android":
|
if platform == "android":
|
||||||
|
|
Loading…
Reference in a new issue