-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
compiler problem with gcc >= 4.8 #489
Comments
Does this patch cause any problems for older gcc versions? We could just apply it every time if so. Thanks! |
I tried to use 4.6 with this patch and got no errors. |
Looks like it's probably good then. If you or anyone else would like to contribute a PR, I'll look at merging it, otherwise I'll add it when I get time. |
Closing as fixed by the linked PR. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
compiling python2 with gcc >= 4.8 results in alot of warnings like:
............... -o Python/ast.o Python/ast.c
In file included from Include/Python.h:126:0,
from Python/ast.c:6:
Include/modsupport.h:27:1: warning: 'PyArg_ParseTuple' is an unrecognized format function type [-Wformat]
You can see a discussion of this topic
https://bugzilla.redhat.com/show_bug.cgi?id=927358
To fix use this patch:
/* end confdefs.h. */
The text was updated successfully, but these errors were encountered: