-
-
Notifications
You must be signed in to change notification settings - Fork 29.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
Prohibit implicit C function declarations #71846
Comments
On Android the crypt() function is missing, causing ugly linking errors when compiling the _crypt module. This patch handles it elegantly. A question: should I include changes to configure and pyconfig.h.in in the patch? |
Version 2: correct the name added to |
Some references for crypt(): POSIX standard: http://pubs.opengroup.org/onlinepubs/9699919799/functions/crypt.html All requires <unistd.h>. |
You just need to mention that one should run autoreconf. |
Thanks, added to the patch description |
Android does not have crypt, but the crypt module is cross-built nevertheless after this warning has been issued: gcc and clang do not enforce the C99 rules and emit just a warning for implicit function declarations instead of the error that would be conforming to C99. This can be changed with the flag '-Werror=implicit-function-declaration' and the compilation of the crypt extension module rightly fails in that case. I think this issue should be fixed by adding this flag to the Makefile. |
Agreed. Adding -Werror=implicit-function-declaration is much simpler. Feel free to close it as rejected. |
If there is an obscure platform where we don’t include the right header file for a function, changing the warning into an error would cause the build to fail. If we do make it an error, it should only be so for 3.7. |
(Re-use the existing issue) Here's a patch that tries to add -Werror=implicit-function-declaration to $BASECFLAGS. This is useful for cross-compiling. When a function is missing, the error jumps out during the build time rather than runtime. Tested configurations:
I'd like to hear some ideas from macOS experts as in my memory macOS's build system is fragile than that on Linux. |
Would it be possible to not add this option for third party extensions? |
Good suggestion. Just use $CFLAGS_NODIST instead of $BASECFLAGS. |
Thanks for the comment and sorry for the mistake. Here's another updated patch. In PEP-7:
Does that apply to configuration files, too? |
I would say it is more important to fit in with the surrounding style than mindlessly follow PEP-7. IMO the indentation in the configure script is a mess, but if we fix it up, it should probably be done separately to adding this extra flag. |
Hello, any updates here? I hope this merged soon so that potential issues on obscure platforms can be fixed as soon as possible. |
New changeset ca2f024ce7cb by Victor Stinner in branch 'default': |
Martin Panter: "If there is an obscure platform where we don’t include the right header file for a function, changing the warning into an error would cause the build to fail." In my experience, calling a function which was not declared is very likely to cause a bug, or a crash in the worst case. For example, on 64-bit, if the return type is a pointer, the C compiler uses the int type by default, whereas a pointer is 32-bit, not 64-bit, and so it will immediately crash. Martin: "If we do make it an error, it should only be so for 3.7." Ok. I pushed the patch to Python 3.6. @Chi Hsuan Yen: Thanks for the patch! Is this change enough to fix the crypt build issue? If yes, can we close the issue? It is likely that the cause causes compilation errors on some platforms where we call non-existent functions or call functions with a missing header. IMHO it's a good thing to get a build error rather than a crash at runtime. A concrete issue is that the compilation of the curses module will probably fails now on Solaris: issue bpo-13552, whereas before the build only emitted warnings. The curses module is broken for years on Solaris, and it seems like nobody is able to fix it, so it's not a big deal. |
Yes and thanks! As a side note, on Android it prevents broken grp.cpython-37m.so, too. |
Oh by the way, if someone sees a build error because of a missing function declaration, please report a new issue. |
New changeset 9a26d20d2baa27407501b13435d733dcc26f3d53 by Victor Stinner in branch 'master': |
Misc/NEWS
so that it is managed by towncrier #552Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: