-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
Build failure on MSVC 1935 with JIT enabled #125207
New issue
Have a question about this project? Sig 10000 n 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
Labels
Comments
mdboom
added a commit
to mdboom/cpython
that referenced
this issue
Oct 9, 2024
mdboom
added a commit
that referenced
this issue
Oct 18, 2024
pablogsal
pushed a commit
to pablogsal/cpython
that referenced
this issue
Oct 18, 2024
* pythongh-125207: Use {0} array initializers * Simplify, as suggested in PR * Revert change to explicitly specify length Signed-off-by: Pablo Galindo <pablogsal@gmail.com>
pablogsal
pushed a commit
to pablogsal/cpython
that referenced
this issue
Oct 21, 2024
* pythongh-125207: Use {0} array initializers * Simplify, as suggested in PR * Revert change to explicitly specify length Signed-off-by: Pablo Galindo <pablogsal@gmail.com>
pablogsal
pushed a commit
to pablogsal/cpython
that referenced
this issue
Oct 21, 2024
* pythongh-125207: Use {0} array initializers * Simplify, as suggested in PR * Revert change to explicitly specify length Signed-off-by: Pablo Galindo <pablogsal@gmail.com>
ebonnal
pushed a commit
to ebonnal/cpython
that referenced
this issue
Jan 12, 2025
* pythongh-125207: Use {0} array initializers * Simplify, as suggested in PR * Revert change to explicitly specify length
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:
Building on MSVC 1935 currently fails when building with the JIT, because that compiler does not support empty array initializers (
{}
).This line in
jit_stencils.h
looks like:This was introduced recently in #123872. All of the uses of empty initializers should use
{0}
instead.CPython versions tested on:
CPython main branch
Operating systems tested on:
Windows
Linked PRs
The text was updated successfully, but these errors were encountered: