[compiler-rt] [Apple][NFC] Update macOS aligned version for lit config (PR #143576)
Dan Blackwell via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 10 11:13:02 PDT 2025
================
@@ -602,7 +602,7 @@ def get_ios_commands_dir():
def get_macos_aligned_version(macos_vers):
platform = config.apple_platform
- if platform == "osx":
+ if platform == "osx" or macos_vers >= 26:
----------------
DanBlackwell wrote:
`macos_vers` is a tuple right? Should this be `macos_vers[0] >= 26` then?
https://github.com/llvm/llvm-project/pull/143576
More information about the llvm-commits
mailing list