-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Fix platform check for macOS #895
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
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
The history of this code is interesting.
zlib 0.71 (the first version in git) had:
zlib 1.0.8 added the fdopen thing, but differently:
The corresponding changelog:
zlib 1.1.3 changed it to:
I think the corresponding changelog entry is:
Presumably, Metrowerks was defining TARGET_OS_MAC, and probably didn't define TARGET_OS_OSX, so my assumption here is that this change breaks Metrowerks. However, it's also a long gone compiler, so maybe this part can go entirely, which leaves us with two different OS_CODE values for macOS, one of which was added in ce12c5c
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.
Ever since ce12c5c,
OS_CODE= 19 has meant macOS (or any other modern Apple OS). Prior to that, modern Apple OSes were reported asOS_CODE= 3, “assume Unix”. So what’s the story withOS_CODE= 7 mentioningTARGET_OS_MAC, then?TARGET_OS_MAChas long been defined by the macOS SDK back to the very earliest days—I see it in the Mac OS X 10.1.5 SDK from Xcode 1.0 (2003-09-28)—but only by<TargetConditionals.h>, which would not normally have been#included into any translation unit that also#included zutil.h. zutil.h is zlib-internal and not generally made available to zlib consumers, so the lack of<TargetConditionals.h>in zlib code is largely dispositive.The
TARGET_OS_MACmacro as used in zutil.h (until 4bd9a71) was presumably used as another synonym for classic (pre-X, previous century) Mac OS, just asMACOS. It would never have meant macOS (or OS X or Mac OS X) in this code, until llvm/llvm-project@6e1f191 (in upstream Clang 18.1, 2024-01-29, and in Xcode 16.3, 2025-03-31).The ce12c5c commit message says that appnote.txt defines the meaning of these bytes, and appnote.txt §4.4.2 makes it somewhat clear by stating assignments of
7 - Macintoshand19 - OS X (Darwin).