[compiler-rt] [Apple][NFC] Update macOS aligned version for lit config (PR #143576)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 10 10:57:32 PDT 2025
https://github.com/thetruestblue created https://github.com/llvm/llvm-project/pull/143576
This updates the aligned version for version 26.
rdar://152851947
>From c63f12df7403654f5decbdd46986c075fc44d8e2 Mon Sep 17 00:00:00 2001
From: thetruestblue <bgaston2 at apple.com>
Date: Tue, 10 Jun 2025 10:21:47 -0700
Subject: [PATCH] [Apple][NFC] Update macOS aligned version for lit config
This updates the aligned version for version 26.
rdar://152851947
---
compiler-rt/test/lit.common.cfg.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/compiler-rt/test/lit.common.cfg.py b/compiler-rt/test/lit.common.cfg.py
index 877718c703ba7..e04907002081c 100644
--- a/compiler-rt/test/lit.common.cfg.py
+++ b/compiler-rt/test/lit.common.cfg.py
@@ -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:
return macos_vers
macos_major, macos_minor = macos_vers
More information about the llvm-commits
mailing list