-
-
Notifications
You must be signed in to change notification settings - Fork 30.8k
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
gh-116874: Fix building _decimal module on ppc64le #116875
Conversation
georgthegreat
commented
Mar 15, 2024
•
edited by bedevere-app
bot
Loading
edited by bedevere-app
bot
- Issue: Fix building CPython on ppc64le #116874
#define CONFIG_32 | ||
#define ANSI | ||
#elif defined(__ppc64__) | ||
#if defined(__ppc64__) || defined(__powerpc64__) |
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.
This is the list of possible macros.
I have experienced the problem with clang-16.
Rather than messing with the bundled copy of |
We build python from source and using system library is a less favorable option for us. Anyway, the problem is in libmpdec upstream, yet I do not have the way to upstream the fix there. |
Such change should be done upstream first: https://www.bytereef.org/mpdecimal/ |
How do I contribute to mpdecimal? |
I suggest starting at https://www.bytereef.org/mpdecimal/mailinglists.html Or you can contact directly Stefan Krah.
I don't think that there is a public code repository. |