Skip to content

Commit

Permalink
fix: apple_suffix for llvm 16.0.0 (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpoluyanov authored Apr 14, 2023
1 parent 84c5a25 commit d52ce5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolchain/internal/release_name.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def _darwin_apple_suffix(llvm_version, arch):
"darwin-apple"
elif major_llvm_version >= 15:
if arch == "arm64":
if patch_llvm_version <= 6:
if major_llvm_version == 15 and patch_llvm_version <= 6:
return "apple-darwin21.0"
else:
return "apple-darwin22.0"
Expand Down

0 comments on commit d52ce5d

Please sign in to comment.