← 返回首页
GH-93207: Remove configure check for stdarg.h (HAVE_STDARG_PROTOTYPES) by kumaraditya303 · Pull Request #93215 · python/cpython · GitHub
Skip to content

Navigation Menu

Toggle navigation
Sign in
Appearance settings
Search or jump to...

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Resetting focus

GH-93207: Remove configure check for stdarg.h (HAVE_STDARG_PROTOTYPES)#93215

Merged
vstinner merged 6 commits into
python:mainfrom
kumaraditya303:gh-93207
May 27, 2022
Merged

GH-93207: Remove configure check for stdarg.h (HAVE_STDARG_PROTOTYPES)#93215
vstinner merged 6 commits into
python:mainfrom
kumaraditya303:gh-93207

Conversation

kumaraditya303 commented May 25, 2022
edited
Loading

Copy link
Copy Markdown
Contributor

Closes #93207

erlend-aasland commented May 25, 2022
edited
Loading

Copy link
Copy Markdown
Contributor

AC changes look good, but I would try to investigate further which compilers/build environments this will affect (if any); buildbots do not cover everything.

Copy link
Copy Markdown
Contributor Author

AC changes look good, but I would try to investigate further which compilers/build environments this will affect (if any); buildbots do not cover everything.

It is unlikely as there is already code which uses variadic args and does not checks for HAVE_STDARG_PROTOTYPES and is working.

kumaraditya303 self-assigned this May 25, 2022
kumaraditya303 added the 🔨 test-with-buildbots Test PR w/ buildbots; report in status section label May 25, 2022

Copy link
Copy Markdown

🤖 New build scheduled with the buildbot fleet by @kumaraditya303 for commit c9a6cc4 🤖

If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again.

bedevere-bot removed the 🔨 test-with-buildbots Test PR w/ buildbots; report in status section label May 25, 2022

Copy link
Copy Markdown
Contributor Author

So far all buildbots passed, I added a news item.

cc @vstinner

kumaraditya303 requested a review from vstinner May 25, 2022 13:57

kumaraditya303 commented May 25, 2022
edited
Loading

Copy link
Copy Markdown
Contributor Author

@erlend-aasland: va_start macro requires two arguments1 and if you try to replace va_start(vargs, format); with va_start(vargs); then it won't even compile. I tried it and got this compilation error proving that va_start with one argument is wrong. Hence this PR is correct and fixes the issue.

/workspaces/cpython/Modules/_asynciomodule.c:2646:19: error: macro "va_start" requires 2 arguments, but only 1 given 2646 | va_start(vargs); | ^

Footnotes

  1. https://www.cplusplus.com/reference/cstdarg/va_start/

Comment thread Misc/NEWS.d/next/Build/2022-05-25-13-56-00.gh-issue-93207.B9Rubf.rst Outdated Show resolved Hide resolved
kumaraditya303 requested a review from vstinner May 27, 2022 07:20

vstinner commented May 27, 2022
edited
Loading

Copy link
Copy Markdown
Member

Many files already call va_start() with 2 arguments: Objects/call.c, PC/launcher.c and PC/launcher2.c, Parser/pegen_errors.c, etc. (Without testing if the HAVE_STDARG_PROTOTYPES macro is defined.)

Copy link
Copy Markdown
Member

Please remove also this line from PC/pyconfig.h:

/* Define if you have the <stdarg.h> prototypes. */ #define HAVE_STDARG_PROTOTYPES

kumaraditya303 requested a review from a team as a code owner May 27, 2022 10:28

Copy link
Copy Markdown
Contributor Author

Many files already call va_start() with 2 arguments: Objects/call.c, PC/launcher.c and PC/launcher2.c, Parser/pegen_errors.c, etc. (Without testing if the HAVE_STDARG_PROTOTYPES macro is defined.)

Done

vstinner merged commit cb04a09 into python:main May 27, 2022

Copy link
Copy Markdown
Member

Merged, thanks.

kumaraditya303 deleted the gh-93207 branch May 27, 2022 11:31

Copy link
Copy Markdown
Contributor

This broke cython which appears to have been relying on HAVE_STDARG_PROTOTYPES to be defined by CPython. I am going to open a PR an the cython side to always go with the 2 argument version.

da-woods pushed a commit to cython/cython that referenced this pull request Jun 7, 2022
* MNT: always require va_start to have two arguments python/cpython#93215 chance CPython to always use the 2-input version of va_start and dropped defining HAVE_STDARG_PROTOTYPES. This resulted in the 1-argument version being used when compiling cython source which fails This makes cython also always use the 2-argument version. * Remove blank line * FIX: version gate 2-argument va_start checking to py311
da-woods pushed a commit to cython/cython that referenced this pull request Jun 7, 2022
* MNT: always require va_start to have two arguments python/cpython#93215 chance CPython to always use the 2-input version of va_start and dropped defining HAVE_STDARG_PROTOTYPES. This resulted in the 1-argument version being used when compiling cython source which fails This makes cython also always use the 2-argument version. * Remove blank line * FIX: version gate 2-argument va_start checking to py311
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Remove check for stdarg.h (HAVE_STDARG_PROTOTYPES) in configure.ac

5 participants

Footer

© 2026 GitHub, Inc.