From 00299f15b46b695d6809f7f812daaad1ad520b4a Mon Sep 17 00:00:00 2001 From: bruvzg <7645683+bruvzg@users.noreply.github.com> Date: Tue, 23 Jun 2020 22:01:42 +0300 Subject: [macOS] Add support for the Apple Silicon (ARM64) build target. --- modules/denoise/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/denoise/config.py') 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): -- cgit v1.2.3