Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
gh-99108: Inform HACL when explicit_bzero is unavailable#123027
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
Uh oh!
There was an error while loading.Please reload this page.
Conversation
!buildbot RHEL7 |
bedevere-bot commentedAug 14, 2024
🤖 New build scheduled with the buildbot fleet by@mhsmith for commitc903381 🤖 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.
Ok that makes a lot of sense. Thank you!
3950392
intopython:mainUh oh!
There was an error while loading.Please reload this page.
Thank you! |
…nGH-123027)Inform HACL whether explicit_bzero is available
Uh oh!
There was an error while loading.Please reload this page.
For context, see#99108 (comment).
This PR fixes the build on Android and RHEL7 by defining LINUX_NO_EXPLICIT_BZERO when
explicit_bzero
is unavailable. It turns out there was already an autoconf check for this function, so I reused it.Instead of creating a new Makefile variable, I appended the definition to LIBHACL_CFLAGS. This may be useful if HACL uses it in other files in the future.