Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.1k
[3.14] gh-91048: Correct Apple platform includes for iOS. (GH-134712)#134714
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 iOS |
bedevere-bot commentedMay 26, 2025
🤖 New build scheduled with the buildbot fleet by@freakboy3742 for commit25493d3 🤖 Results will be shown at: https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F134714%2Fmerge The command will test the builders whose names match following regular expression: The builders matched are:
|
6c917cb
intopython:3.14Uh oh!
There was an error while loading.Please reload this page.
@@ -35,7 +35,7 @@ extern "C" { | |||
# include <sys/mman.h> | |||
#endif | |||
#if defined(__APPLE__) && TARGET_OS_OSX | |||
#if defined(__APPLE__) &&defined(TARGET_OS_OSX) &&TARGET_OS_OSX |
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.
For future reference, this is unnecessary, as undefined preprocessor symbols are always treated as if they have the value 0.
Uh oh!
There was an error while loading.Please reload this page.
Correct Apple platform includes for iOS.
(cherry picked from commit965662e)
Co-authored-by: Russell Keith-Mageerussell@keith-magee.com