Draft
Conversation
Member
Author
|
@bors2 try jobs=x86_64-apple |
This comment has been minimized.
This comment has been minimized.
rust-bors bot
added a commit
that referenced
this pull request
Sep 30, 2025
Resume testing macOS x86_64 try-job: x86_64-apple
Contributor
|
💔 Test for 30cfc15 failed: CI. Failed job:
|
This comment has been minimized.
This comment has been minimized.
b98a266 to
58709b2
Compare
Member
Author
|
@bors2 try jobs=x86_64-apple |
rust-bors bot
added a commit
that referenced
this pull request
Sep 30, 2025
Resume testing macOS x86_64 try-job: x86_64-apple
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Contributor
|
💔 Test for b78cb2e failed: CI. Failed jobs:
|
58709b2 to
2bde245
Compare
Member
Author
|
@bors2 try jobs=x86_64-apple |
rust-bors bot
added a commit
that referenced
this pull request
Sep 30, 2025
Resume testing macOS x86_64 try-job: x86_64-apple
This comment has been minimized.
This comment has been minimized.
Contributor
|
💔 Test for ce03e97 failed: CI. Failed jobs:
|
This comment has been minimized.
This comment has been minimized.
Member
Author
|
@bors2 try jobs=x86_64-apple |
This comment has been minimized.
This comment has been minimized.
rust-bors bot
added a commit
that referenced
this pull request
Sep 30, 2025
Resume testing macOS x86_64 try-job: x86_64-apple
This comment has been minimized.
This comment has been minimized.
Contributor
|
💔 Test for 5a1d17e failed: CI. Failed jobs:
|
Member
Author
|
@bors2 try jobs=x86_64-apple |
rust-bors bot
added a commit
that referenced
this pull request
Sep 30, 2025
Resume testing macOS x86_64 try-job: x86_64-apple
This comment has been minimized.
This comment has been minimized.
Contributor
|
💔 Test for 08159eb failed: CI. Failed jobs:
|
Member
Author
|
@bors2 try jobs=x86_64-apple |
rust-bors bot
added a commit
that referenced
this pull request
Oct 3, 2025
Resume testing macOS x86_64 try-job: x86_64-apple
This comment has been minimized.
This comment has been minimized.
Contributor
This comment has been minimized.
This comment has been minimized.
Merged
This comment has been minimized.
This comment has been minimized.
JonathanBrouwer
added a commit
to JonathanBrouwer/rust
that referenced
this pull request
Feb 9, 2026
Update to Xcode 26.2
Update our CI to run with Xcode 26.
This means that:
- LLVM will be built with a newer Clang version (before Apple Clang 15, now Apple Clang 17).
- Our binaries (e.g. `rustc` and `libstd*.dylib`) will have their SDK version raised (before macOS 14.5, now 26.2).
- Our binaries will be built with a newer linker (before 1053.12, now 1230.1).
The last two points can be observed with:
```sh
$ vtool -show-build ./build/host/stage1/bin/rustc
Load command 10
cmd LC_BUILD_VERSION
cmdsize 32
platform MACOS
minos 11.0
sdk 26.2
ntools 1
tool LD
version 1230.1
$ vtool -show-build ./build/host/stage1/lib/rustlib/aarch64-apple-darwin/lib/libstd*.dylib
Load command 9
cmd LC_BUILD_VERSION
cmdsize 32
platform MACOS
minos 11.0
sdk 26.2
ntools 1
tool LD
version 1230.1
```
This shouldn't have much of an effect, but things like `dyld` is known to inspect the SDK version, so it _might_ expose some latent bugs (I really don't expect it to though).
This also updates the macOS runners to run on macOS 15 (the macOS 14 runners only have up to Xcode 16.2 available). That is desirable anyhow, as [the macOS 14 runners will be deprecated in July](actions/runner-images#13518). This is probably also required for rust-lang#147192.
r? shepmaster
JonathanBrouwer
added a commit
to JonathanBrouwer/rust
that referenced
this pull request
Feb 9, 2026
Update to Xcode 26.2
Update our CI to run with Xcode 26.
This means that:
- LLVM will be built with a newer Clang version (before Apple Clang 15, now Apple Clang 17).
- Our binaries (e.g. `rustc` and `libstd*.dylib`) will have their SDK version raised (before macOS 14.5, now 26.2).
- Our binaries will be built with a newer linker (before 1053.12, now 1230.1).
The last two points can be observed with:
```sh
$ vtool -show-build ./build/host/stage1/bin/rustc
Load command 10
cmd LC_BUILD_VERSION
cmdsize 32
platform MACOS
minos 11.0
sdk 26.2
ntools 1
tool LD
version 1230.1
$ vtool -show-build ./build/host/stage1/lib/rustlib/aarch64-apple-darwin/lib/libstd*.dylib
Load command 9
cmd LC_BUILD_VERSION
cmdsize 32
platform MACOS
minos 11.0
sdk 26.2
ntools 1
tool LD
version 1230.1
```
This shouldn't have much of an effect, but things like `dyld` is known to inspect the SDK version, so it _might_ expose some latent bugs (I really don't expect it to though).
This also updates the macOS runners to run on macOS 15 (the macOS 14 runners only have up to Xcode 16.2 available). That is desirable anyhow, as [the macOS 14 runners will be deprecated in July](actions/runner-images#13518). This is probably also required for rust-lang#147192.
r? shepmaster
rust-timer
added a commit
that referenced
this pull request
Feb 10, 2026
Rollup merge of #152013 - madsmtm:update-xcode, r=shepmaster Update to Xcode 26.2 Update our CI to run with Xcode 26. This means that: - LLVM will be built with a newer Clang version (before Apple Clang 15, now Apple Clang 17). - Our binaries (e.g. `rustc` and `libstd*.dylib`) will have their SDK version raised (before macOS 14.5, now 26.2). - Our binaries will be built with a newer linker (before 1053.12, now 1230.1). The last two points can be observed with: ```sh $ vtool -show-build ./build/host/stage1/bin/rustc Load command 10 cmd LC_BUILD_VERSION cmdsize 32 platform MACOS minos 11.0 sdk 26.2 ntools 1 tool LD version 1230.1 $ vtool -show-build ./build/host/stage1/lib/rustlib/aarch64-apple-darwin/lib/libstd*.dylib Load command 9 cmd LC_BUILD_VERSION cmdsize 32 platform MACOS minos 11.0 sdk 26.2 ntools 1 tool LD version 1230.1 ``` This shouldn't have much of an effect, but things like `dyld` is known to inspect the SDK version, so it _might_ expose some latent bugs (I really don't expect it to though). This also updates the macOS runners to run on macOS 15 (the macOS 14 runners only have up to Xcode 16.2 available). That is desirable anyhow, as [the macOS 14 runners will be deprecated in July](actions/runner-images#13518). This is probably also required for #147192. r? shepmaster
6e9307f to
a15b69b
Compare
Member
Author
|
@bors try jobs=x86_64-apple |
This comment has been minimized.
This comment has been minimized.
rust-bors bot
pushed a commit
that referenced
this pull request
Feb 12, 2026
Resume testing macOS x86_64 try-job: x86_64-apple
Contributor
a15b69b to
e71928f
Compare
Member
Author
|
@bors try jobs=x86_64-apple |
This comment has been minimized.
This comment has been minimized.
rust-bors bot
pushed a commit
that referenced
this pull request
Feb 13, 2026
Resume testing macOS x86_64 try-job: x86_64-apple
Contributor
|
💔 Test for 620c25f failed: CI. Failed job:
|
This comment has been minimized.
This comment has been minimized.
Member
Author
|
@bors try jobs=x86_64-apple |
rust-bors bot
pushed a commit
that referenced
this pull request
Feb 14, 2026
Resume testing macOS x86_64 try-job: x86_64-apple
This comment has been minimized.
This comment has been minimized.
Contributor
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.
No description provided.