-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Set the minimum deployment target for aarch64-apple-watchos
#147447
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
Set the minimum deployment target for aarch64-apple-watchos
#147447
Conversation
These commits modify compiler targets. |
r? @davidtwco rustbot has assigned @davidtwco. Use |
aarch64-apple-watchos
aarch64-apple-watchos
To match what's done in LLVM 21.
b92b86d
to
a914f82
Compare
@bors r+ rollup |
…ployment-target, r=davidtwco Set the minimum deployment target for `aarch64-apple-watchos` To match what's done in LLVM 21 and Xcode 26, watchOS 26 is the first OS version that actually runs true Aarch64 binaries. This affects the object files we create, and the linker invocation when using `-Clinker=ld`. See also investigation in rust-lang#147223.
Rollup of 4 pull requests Successful merges: - #147447 (Set the minimum deployment target for `aarch64-apple-watchos`) - #147479 (cmse: improve error messages) - #147515 (Update rustc-perf submodule) - #147523 (x86_64-bigint-helpers test: update test assertion to cover registers r8 and r9) r? `@ghost` `@rustbot` modify labels: rollup
☀️ Test successful - checks-actions |
What is this?This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.Comparing 0b278a5 (parent) -> b925a86 (this PR) Test differencesNo test diffs found Test dashboardRun cargo run --manifest-path src/ci/citool/Cargo.toml -- \
test-dashboard b925a865e2c9a0aefe5a2877863cb4df796f2eaf --output-dir test-dashboard And then open Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance |
Finished benchmarking commit (b925a86): comparison URL. Overall result: ❌✅ regressions and improvements - no action needed@rustbot label: -perf-regression Instruction countOur most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.
Max RSS (memory usage)Results (secondary -1.3%)A less reliable metric. May be of interest, but not used to determine the overall result above.
CyclesResults (secondary -0.8%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 473.191s -> 472.277s (-0.19%) |
To match what's done in LLVM 21 and Xcode 26, watchOS 26 is the first OS version that actually runs true Aarch64 binaries. This affects the object files we create, and the linker invocation when using
-Clinker=ld
.See also investigation in #147223.