-
-
Notifications
You must be signed in to change notification settings - Fork 23.4k
[macOS] Add support for the Apple Silicon (ARM64) build target. #39788
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bruvzg Doesn't this make the above comment obsolete? It seems that only x86_64 is supported, not just "64-bit architectures". There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The version we are using is x86_64 only, newer versions of oneDNN should support arm64 as well (there were some issues with updating it, I do not remember what's exactly). |
||
|
||
|
||
def configure(env): | ||
|
Uh oh!
There was an error while loading. Please reload this page.