diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-01 16:45:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-01 16:45:23 +0200 |
commit | 5c9ee93f3e6918974aa5dc7dab65a2fdbc8c3313 (patch) | |
tree | 9b2252be5843b7ce4efbb4ed570abcf8557c38fe /modules/denoise | |
parent | 01559ca84e0782b91788be73609f2c8afed94027 (diff) | |
parent | 00299f15b46b695d6809f7f812daaad1ad520b4a (diff) |
Merge pull request #39788 from bruvzg/macos_apple_silicon
[macOS] Add support for the Apple Silicon (ARM64) build target.
Diffstat (limited to 'modules/denoise')
-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): |