Skip to content

Commit d195107

Browse files
committed
Rustup to rustc 1.57.0-nightly (54bb4fec6 2021-10-08)
1 parent 376dd76 commit d195107

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build_sysroot/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

patches/0027-sysroot-128bit-atomic-operations.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ index fa96b7a..2854f9c 100644
107107
inner::monotonize(raw)
108108
}
109109

110-
-#[cfg(all(target_has_atomic = "64", not(target_has_atomic = "128")))]
110+
-#[cfg(any(all(target_has_atomic = "64", not(target_has_atomic = "128")), target_arch = "aarch64"))]
111111
+#[cfg(target_has_atomic = "64")]
112112
pub mod inner {
113113
use crate::sync::atomic::AtomicU64;
@@ -117,7 +117,7 @@ index fa96b7a..2854f9c 100644
117117
}
118118

119119
+/*
120-
#[cfg(target_has_atomic = "128")]
120+
#[cfg(all(target_has_atomic = "128", not(target_arch = "aarch64")))]
121121
pub mod inner {
122122
use crate::sync::atomic::AtomicU128;
123123
@@ -94,8 +95,9 @@ pub mod inner {

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "nightly-2021-10-02"
2+
channel = "nightly-2021-10-09"
33
components = ["rust-src", "rustc-dev", "llvm-tools-preview"]

0 commit comments

Comments
 (0)