xx-info: darwin: use macOS 11.0 as default deployment target for arm64 - #244
Merged
Merged
Conversation
Contributor
Author
|
Let me open a separate PR to update alpine 3.22 -> 3.23 |
Contributor
Author
|
Oh; other failures here; I guess |
Apple Silicon requires macOS 11. Newer Clang versions canonicalize the
historical "10.16" deployment target to "11.0", emitting
`-Woverriding-deployment-version`. This becomes a build failure when
warnings are treated as errors (for example by Go's runtime/cgo);
GO111MODULE=on go build -trimpath -tags "fsnotify,e2e" -ldflags "-w -X github.com/docker/compose/v5/internal.Version=61203c8" -o "/out/docker-compose" ./cmd
# runtime/cgo
clang: error: overriding deployment version from '10.16' to '11.0' [-Werror,-Woverriding-deployment-version]
Update `MACOSX_VERSION_MIN` to use 11.0 as the default deployment
target for darwin/arm64 instead.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
thaJeztah
force-pushed
the
bump_MACOSX_VERSION_MIN
branch
from
July 8, 2026 14:31
708e636 to
203eae8
Compare
tonistiigi
approved these changes
Jul 8, 2026
crazy-max
approved these changes
Jul 10, 2026
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
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.
Apple Silicon requires macOS 11. Newer Clang versions canonicalize the historical "10.16" deployment target to "11.0", emitting
-Woverriding-deployment-version. This becomes a build failure when warnings are treated as errors (for example by Go's runtime/cgo);Update
MACOSX_VERSION_MINto use 11.0 as the default deployment target for darwin/arm64 instead.