diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2020-06-23 22:01:42 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2020-06-29 12:33:51 +0300 |
commit | 00299f15b46b695d6809f7f812daaad1ad520b4a (patch) | |
tree | 527781843f15ef421089ca02b119583d9e8e815e /modules/denoise/config.py | |
parent | 9fc65fd1f15b2ae2e26cf69c54819e7d6598fa05 (diff) |
[macOS] Add support for the Apple Silicon (ARM64) build target.
Diffstat (limited to 'modules/denoise/config.py')
-rw-r--r-- | modules/denoise/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/denoise/config.py b/modules/denoise/config.py index 091d7643c0..49a1f036ed 100644 --- a/modules/denoise/config.py +++ b/modules/denoise/config.py @@ -5,7 +5,7 @@ def can_build(env, platform): # as doing lightmap generation and denoising on Android or HTML5 # would be a bit far-fetched. desktop_platforms = ["linuxbsd", "osx", "windows"] - return env["tools"] and platform in desktop_platforms and env["bits"] == "64" + return env["tools"] and platform in desktop_platforms and env["bits"] == "64" and env["arch"] != "arm64" def configure(env): |