-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
Tools/jit/_llvm.py doesn't support LLVM_VERSION_SUFFIX #120602
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hello! |
xarblu
added a commit
to xarblu/cpython
that referenced
this issue
Jun 16, 2024
Yes, I'm in the process of sending it. Just following the contribution guidelines and made the issue first :) |
xarblu
added a commit
to xarblu/cpython
that referenced
this issue
Jun 19, 2024
brandtbucher
pushed a commit
that referenced
this issue
Jun 20, 2024
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Jun 20, 2024
…-120604) (cherry picked from commit 285f42c) Co-authored-by: Xarblu <[email protected]>
brandtbucher
pushed a commit
that referenced
this issue
Jun 20, 2024
(cherry picked from commit 285f42c) Co-authored-by: Xarblu <[email protected]>
mrahtz
pushed a commit
to mrahtz/cpython
that referenced
this issue
Jun 30, 2024
noahbkim
pushed a commit
to hudson-trading/cpython
that referenced
this issue
Jul 11, 2024
estyxx
pushed a commit
to estyxx/cpython
that referenced
this issue
Jul 17, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Bug report
Bug description:
I initially encountered this build issue on Gentoo.
Currently the regex in
Tools/jit/_llvm.py
only allows strings of the formversion MAJOR.MINOR.PATCH
However if LLVM was built with e.g.
-DLLVM_VERSION_SUFFIX=+libcxx
(as is the case on Gentoo)clang --version
would returnclang version 18.1.7+libcxx
which is a valid version but doesn't match.My proposed fix would be to simply allow a non-whitespace string of arbitrary length after the version, i.e.:
CPython versions tested on:
3.13
Operating systems tested on:
Linux
Linked PRs
The text was updated successfully, but these errors were encountered: