diff options
| author | Jacob Pratt <jacob@jhpratt.dev> | 2025-03-07 21:57:50 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-07 21:57:50 -0500 |
| commit | 8cac2593475edd203cf101d0236ff7bc17c38a9f (patch) | |
| tree | 7970a10ba7e1ce42edd51b2a9b2d403d45341264 /src/ci/github-actions | |
| parent | 4ec840719652ea7b7b81e281891af7b24d9bc762 (diff) | |
| parent | b5562c04e73590c8eefa67400aba022ff7b61f25 (diff) | |
| download | rust-8cac2593475edd203cf101d0236ff7bc17c38a9f.tar.gz rust-8cac2593475edd203cf101d0236ff7bc17c38a9f.zip | |
Rollup merge of #137957 - Noratrieb:no, r=wesleywiser
Remove i586-pc-windows-msvc
See [MCP 840](https://github.com/rust-lang/compiler-team/issues/840).
I left a specialized error message that should help users that hit this in the wild (for example, because they use it in their CI).
```
error: Error loading target specification: the `i586-pc-windows-msvc` target has been removed. Use the `i686-pc-windows-msvc` target instead.
Windows 10 (the minimum required OS version) requires a CPU baseline of at least i686 so you can safely switch. Run `rustc --print target-list` for a list of built-in targets
```
``@workingjubilee`` ``@calebzulawski`` fyi portable-simd uses this target in CI, if you wanna remove it already before this happens
Diffstat (limited to 'src/ci/github-actions')
| -rw-r--r-- | src/ci/github-actions/jobs.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/github-actions/jobs.yml b/src/ci/github-actions/jobs.yml index 6b88c26e3a2..eba55338ff8 100644 --- a/src/ci/github-actions/jobs.yml +++ b/src/ci/github-actions/jobs.yml @@ -591,7 +591,7 @@ auto: RUST_CONFIGURE_ARGS: >- --build=i686-pc-windows-msvc --host=i686-pc-windows-msvc - --target=i686-pc-windows-msvc,i586-pc-windows-msvc + --target=i686-pc-windows-msvc --enable-full-tools --enable-profiler SCRIPT: python x.py dist bootstrap --include-default-paths |
