[3.13] GH-120602: Support LLVM_VERSION_SUFFIX for JIT builds (GH-120768)

(cherry picked from commit 285f42c850)

Co-authored-by: Xarblu <xarblu@protonmail.com>
This commit is contained in:
Miss Islington (bot) 2024-06-20 03:13:23 +02:00 committed by GitHub
parent e415d2561b
commit 6b714d545f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -9,7 +9,7 @@ import subprocess
import typing
_LLVM_VERSION = 18
_LLVM_VERSION_PATTERN = re.compile(rf"version\s+{_LLVM_VERSION}\.\d+\.\d+\s+")
_LLVM_VERSION_PATTERN = re.compile(rf"version\s+{_LLVM_VERSION}\.\d+\.\d+\S*\s+")
_P = typing.ParamSpec("_P")
_R = typing.TypeVar("_R")