Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
gh-134486: Fix missing alloca symbol in _ctypes on NetBSD.#134487
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
Conversation
!buildbot BSD |
bedevere-bot commentedMay 22, 2025
🤖 New build scheduled with the buildbot fleet by@AA-Turner for commit46b0d9d 🤖 Results will be shown at: https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F134487%2Fmerge The command will test the builders whose names match following regular expression: The builders matched are:
|
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.
LGTM, buildbot failure looks unrelated.
Misc/NEWS.d/next/Build/2025-05-21-22-13-30.gh-issue-134486.yvdL6f.rst OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Misc/NEWS.d/next/Build/2025-05-21-22-13-30.gh-issue-134486.yvdL6f.rst OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
46b0d9d
to2103a25
ComparePreviously the module would fail to load because the ``alloca`` symbolwas undefined. Now we check for GCC/Clang builtins for systems who donot define ``alloca`` in headers.
2103a25
to93f6e60
CompareThere 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.
LGTM
furkanonder left a comment• 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.
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.
LGTM. The issue occurs onNetBSD 10.0 (ARM architecture)
. As a check, I tested the changes in the PR onNetBSD 10.0 (amd64)
and got a successful build.
b8f5526
intopython:mainUh oh!
There was an error while loading.Please reload this page.
Merged, thank you. |
Uh oh!
There was an error while loading.Please reload this page.
Previously the module would fail to load because the
alloca
symbol was undefined. Now we check for GCC/Clang builtins for systems who do not definealloca
in headers.alloca
symbol #134486