Skip to content
Snippets Groups Projects
Commit 1772383c authored by George Hotz's avatar George Hotz
Browse files

Add arm64 support for Apple Silicon

parent ff2f0ca7
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,7 @@ def get_config_schema(): ...@@ -56,7 +56,7 @@ def get_config_schema():
default_libs = [] default_libs = []
default_cxxflags = default_cxxflags + [ default_cxxflags = default_cxxflags + [
"-stdlib=libc++", "-mmacosx-version-min=10.7", "-stdlib=libc++", "-mmacosx-version-min=10.7",
"-arch', 'i386", "-arch", "x86_64" "-arch', 'i386", "-arch", "x86_64", "-arch", "arm64",
] ]
from os.path import isdir from os.path import isdir
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment