Build date: 2025-07-10T19:57:40.427Z
Build duration: 7.481s
Builder does-it-build commit: 87ff3d03
Compiling compiler_builtins v0.1.85 Compiling core v0.0.0 (/root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core) error: cannot find macro `atomic_int` in this scope --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:2857:1 | 2857 | atomic_int! { | ^^^^^^^^^^ error: cannot find macro `atomic_int` in this scope --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:2877:1 | 2877 | atomic_int! { | ^^^^^^^^^^ error: cannot find macro `atomic_int` in this scope --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:2941:9 | 2941 | atomic_int! { | ^^^^^^^^^^ ... 2984 | / atomic_int_ptr_sized! { 2985 | | "16" 2 2986 | | "32" 4 2987 | | "64" 8 2988 | | } | |_- in this macro invocation | = note: this error originates in the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) error: cannot find macro `atomic_int` in this scope --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:2962:9 | 2962 | atomic_int! { | ^^^^^^^^^^ ... 2984 | / atomic_int_ptr_sized! { 2985 | | "16" 2 2986 | | "32" 4 2987 | | "64" 8 2988 | | } | |_- in this macro invocation | = note: this error originates in the macro `atomic_int_ptr_sized` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0412]: cannot find type `AtomicIsize` in module `crate::sync::atomic` --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/panic/unwind_safe.rs:206:45 | 206 | impl RefUnwindSafe for crate::sync::atomic::AtomicIsize {} | ^^^^^^^^^^^ not found in `crate::sync::atomic` error[E0412]: cannot find type `AtomicI64` in module `crate::sync::atomic` --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/panic/unwind_safe.rs:218:45 | 218 | impl RefUnwindSafe for crate::sync::atomic::AtomicI64 {} | ^^^^^^^^^ help: a struct with a similar name exists: `AtomicPtr` | ::: /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:176:1 | 176 | pub struct AtomicPtr<T> { | ----------------------- similarly named struct `AtomicPtr` defined here error[E0412]: cannot find type `AtomicUsize` in module `crate::sync::atomic` --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/panic/unwind_safe.rs:225:45 | 225 | impl RefUnwindSafe for crate::sync::atomic::AtomicUsize {} | ^^^^^^^^^^^ not found in `crate::sync::atomic` error[E0412]: cannot find type `AtomicU64` in module `crate::sync::atomic` --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/panic/unwind_safe.rs:237:45 | 237 | impl RefUnwindSafe for crate::sync::atomic::AtomicU64 {} | ^^^^^^^^^ help: a struct with a similar name exists: `AtomicPtr` | ::: /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:176:1 | 176 | pub struct AtomicPtr<T> { | ----------------------- similarly named struct `AtomicPtr` defined here error[E0425]: cannot find function `atomic_swap` in this scope --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:1253:18 | 1253 | unsafe { atomic_swap(self.p.get(), ptr, order) } | ^^^^^^^^^^^ help: a function with a similar name exists: `atomic_load` ... 3019 | unsafe fn atomic_load<T: Copy>(dst: *const T, order: Ordering) -> T { | ------------------------------------------------------------------- similarly named function `atomic_load` defined here error[E0425]: cannot find function `strongest_failure_ordering` in this scope --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:1308:58 | 1308 | match self.compare_exchange(current, new, order, strongest_failure_ordering(order)) { | ^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope error[E0425]: cannot find function `atomic_compare_exchange` in this scope --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:1355:18 | 1355 | unsafe { atomic_compare_exchange(self.p.get(), current, new, success, failure) } | ^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope error[E0425]: cannot find function `atomic_compare_exchange_weak` in this scope --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:1407:18 | 1407 | unsafe { atomic_compare_exchange_weak(self.p.get(), current, new, success, failure) } | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope error[E0425]: cannot find function `atomic_add` in this scope --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:1603:18 | 1603 | unsafe { atomic_add(self.p.get(), core::ptr::invalid_mut(val), order).cast() } | ^^^^^^^^^^ help: a function with a similar name exists: `atomic_load` ... 3019 | unsafe fn atomic_load<T: Copy>(dst: *const T, order: Ordering) -> T { | ------------------------------------------------------------------- similarly named function `atomic_load` defined here error[E0425]: cannot find function `atomic_sub` in this scope --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:1638:18 | 1638 | unsafe { atomic_sub(self.p.get(), core::ptr::invalid_mut(val), order).cast() } | ^^^^^^^^^^ not found in this scope error[E0425]: cannot find function `atomic_or` in this scope --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:1689:18 | 1689 | unsafe { atomic_or(self.p.get(), core::ptr::invalid_mut(val), order).cast() } | ^^^^^^^^^ help: a function with a similar name exists: `atomic_load` ... 3019 | unsafe fn atomic_load<T: Copy>(dst: *const T, order: Ordering) -> T { | ------------------------------------------------------------------- similarly named function `atomic_load` defined here error[E0425]: cannot find function `atomic_and` in this scope --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:1739:18 | 1739 | unsafe { atomic_and(self.p.get(), core::ptr::invalid_mut(val), order).cast() } | ^^^^^^^^^^ help: a function with a similar name exists: `atomic_load` ... 3019 | unsafe fn atomic_load<T: Copy>(dst: *const T, order: Ordering) -> T { | ------------------------------------------------------------------- similarly named function `atomic_load` defined here error[E0425]: cannot find function `atomic_xor` in this scope --> /root/.rustup/toolchains/nightly-2023-01-21-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/sync/atomic.rs:1787:18 | 1787 | unsafe { atomic_xor(self.p.get(), core::ptr::invalid_mut(val), order).cast() } | ^^^^^^^^^^ help: a function with a similar name exists: `atomic_load` ... 3019 | unsafe fn atomic_load<T: Copy>(dst: *const T, order: Ordering) -> T { | ------------------------------------------------------------------- similarly named function `atomic_load` defined here Some errors have detailed explanations: E0412, E0425. For more information about an error, try `rustc --explain E0412`. error: could not compile `core` due to 17 previous errors