Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
gh-134273: Propagate CFLAGS to the JIT#134276
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Thanks! These should also be part of the hash in_Target._compute_digest
.
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
BTW, JIT CI is broken on macOS and Windows currently, so if those fail (build failure on Windows and 2 failing tests on macOS), it's not your fault. |
Technically, this should probably also support |
It's up to you. If you want to add |
brandtbucher commentedMay 20, 2025 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
So, this breaks on universal builds, since that sets I think part of the problem is that we don't want to use an option for the JITjust because it's being used for the interpreter itself. We want very tight control over the code we're generating, especially since the parse step is sort of fragile. What flags are you needing to pass, exactly? Is it only include paths? |
zanieb commentedMay 20, 2025 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
I onlyneed the include flag for my build to pass. But I only caught#134291 because all of my flags were passed through. It's possible there are other subtle differences. I'm totally fine with a |
Uh oh!
There was an error while loading.Please reload this page.