diff options
| author | bors <bors@rust-lang.org> | 2025-02-03 20:02:54 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-02-03 20:02:54 +0000 |
| commit | f027438f8bc6b747528dca8b8de13043544d7238 (patch) | |
| tree | 75d7d1ad77128b38b45ec546cadefafccc6ae109 /src/ci | |
| parent | 534d79adf938fc3839fad47832c7cf2b4927d7d9 (diff) | |
| parent | 8596ce141c9ba714f39024b19afce63ca2184e67 (diff) | |
| download | rust-f027438f8bc6b747528dca8b8de13043544d7238.tar.gz rust-f027438f8bc6b747528dca8b8de13043544d7238.zip | |
Auto merge of #136146 - RalfJung:x86-abi, r=workingjubilee
Explicitly choose x86 softfloat/hardfloat ABI Part of https://github.com/rust-lang/rust/pull/135408: Instead of choosing this based on the target features listed in the target spec, make that choice explicit. All built-in targets are being updated here; custom (JSON-defined) x86 (32bit and 64bit) softfloat targets need to explicitly set `rustc-abi` to `x86-softfloat`.
Diffstat (limited to 'src/ci')
| -rwxr-xr-x | src/ci/docker/scripts/rfl-build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ci/docker/scripts/rfl-build.sh b/src/ci/docker/scripts/rfl-build.sh index 8776e0f0be9..3eb85ab215e 100755 --- a/src/ci/docker/scripts/rfl-build.sh +++ b/src/ci/docker/scripts/rfl-build.sh @@ -2,7 +2,7 @@ set -euo pipefail -LINUX_VERSION=v6.13-rc1 +LINUX_VERSION=50e57739141b41f731ab31f8380821c7969f9dc4 # Build rustc, rustdoc, cargo, clippy-driver and rustfmt ../x.py build --stage 2 library rustdoc clippy rustfmt @@ -28,7 +28,7 @@ rm -rf linux || true # Download Linux at a specific commit mkdir -p linux git -C linux init -git -C linux remote add origin https://github.com/Rust-for-Linux/linux.git +git -C linux remote add origin https://github.com/Darksonn/linux.git git -C linux fetch --depth 1 origin ${LINUX_VERSION} git -C linux checkout FETCH_HEAD |
