about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTrevor Gross <tmgross@umich.edu>2025-02-25 19:08:03 +0000
committerTrevor Gross <tmgross@umich.edu>2025-03-01 20:02:51 +0000
commit5328983b077f98a41d6dc3c3af303ae4f3ecccf2 (patch)
tree7ee0b0312538aa96f661fbe43b3ac4c9800b87ed
parentf56e516575f67e05720614fb9fc1b1e8870c970c (diff)
downloadrust-5328983b077f98a41d6dc3c3af303ae4f3ecccf2.tar.gz
rust-5328983b077f98a41d6dc3c3af303ae4f3ecccf2.zip
Update `compiler-builtins` to 0.1.150
Includes a change to make a subset of math symbols available on all
platforms [1], and disables `f16` on aarch64 without neon [2].

[1]: https://github.com/rust-lang/compiler-builtins/pull/763
[2]: https://github.com/rust-lang/compiler-builtins/pull/775
-rw-r--r--patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch b/patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch
index bedc6ca11b3..d8db7d63f2d 100644
--- a/patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch
+++ b/patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch
@@ -16,8 +16,8 @@ index 7165c3e48af..968552ad435 100644
  
  [dependencies]
  core = { path = "../core", public = true }
--compiler_builtins = { version = "=0.1.148", features = ['rustc-dep-of-std'] }
-+compiler_builtins = { version = "=0.1.148", features = ['rustc-dep-of-std', 'no-f16-f128'] }
+-compiler_builtins = { version = "=0.1.150", features = ['rustc-dep-of-std'] }
++compiler_builtins = { version = "=0.1.150", features = ['rustc-dep-of-std', 'no-f16-f128'] }
  
  [dev-dependencies]
  rand = { version = "0.8.5", default-features = false, features = ["alloc"] }