mirror of https://github.com/python/cpython.git
GH-120602: Support LLVM_VERSION_SUFFIX for JIT builds (GH-120604)
This commit is contained in:
parent
4bbb0273f2
commit
285f42c850
|
@ -0,0 +1,2 @@
|
|||
Correctly handle LLVM installs with ``LLVM_VERSION_SUFFIX`` when building
|
||||
with ``--enable-experimental-jit``.
|
|
@ -9,7 +9,7 @@
|
|||
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")
|
||||
|
|
Loading…
Reference in New Issue