We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4b23f5 commit 7feee4bCopy full SHA for 7feee4b
1 file changed
clang-installer/src/downloader/pypi.rs
@@ -179,8 +179,8 @@ impl PlatformTag {
179
_ => false,
180
},
181
"macos" => match sys_arch {
182
- "x86_64" => self.arch == "x86_64",
183
- "aarch64" => self.arch == "arm64",
+ "x86_64" => self.arch == "x86_64" || self.arch == "universal2",
+ "aarch64" => self.arch == "arm64" || self.arch == "universal2",
184
185
186
"linux" => self.arch == sys_arch,
0 commit comments