🔔 does-it-build supports sending notifications to target maintainers via GitHub issues. You can add yourself with a PR. 🔔
Build date: 2025-07-09T07:24:33.255Z
Build duration: 35.449s
Builder does-it-build commit: 87ff3d03
Compiling compiler_builtins v0.1.103
Compiling core v0.0.0 (/root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core)
Compiling rustc-std-workspace-core v1.99.0 (/root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core)
Compiling alloc v0.0.0 (/root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc)
Compiling rustc-std-workspace-alloc v1.99.0 (/root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc)
Compiling libc v0.2.150
Compiling cfg-if v1.0.0
Compiling memchr v2.5.0
Compiling unwind v0.0.0 (/root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/unwind)
Compiling gimli v0.28.0
Compiling adler v1.0.2
Compiling std v0.0.0 (/root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std)
Compiling miniz_oxide v0.7.1
Compiling addr2line v0.21.0
Compiling panic_unwind v0.0.0 (/root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_unwind)
Compiling object v0.32.1
Compiling std_detect v0.1.5 (/root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/stdarch/crates/std_detect)
Compiling panic_abort v0.0.0 (/root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_abort)
Compiling hashbrown v0.14.3
Compiling rustc-demangle v0.1.23
error[E0432]: unresolved imports `libc::fdopendir`, `libc::openat`, `libc::unlinkat`
--> /root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/unix/fs.rs:1989:16
|
1989 | use libc::{fdopendir, openat, unlinkat};
| ^^^^^^^^^ ^^^^^^ ^^^^^^^^ no `unlinkat` in the root
| | |
| | no `openat` in the root
| no `fdopendir` in the root
|
help: a similar name exists in the module
|
1989 | use libc::{opendir, openat, unlinkat};
| ~~~~~~~
help: a similar name exists in the module
|
1989 | use libc::{fdopendir, open, unlinkat};
| ~~~~
help: a similar name exists in the module
|
1989 | use libc::{fdopendir, openat, nlink_t};
| ~~~~~~~
error[E0425]: cannot find value `UTIME_OMIT` in crate `libc`
--> /root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/unix/fs.rs:1313:67
|
1313 | None => Ok(libc::timespec { tv_sec: 0, tv_nsec: libc::UTIME_OMIT as _ }),
| ^^^^^^^^^^ not found in `libc`
error[E0425]: cannot find function `futimens` in crate `libc`
--> /root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/unix/fs.rs:1384:36
|
1384 | cvt(unsafe { libc::futimens(self.as_raw_fd(), times.as_ptr()) })?;
| ^^^^^^^^ help: a function with a similar name exists: `utimes`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.150/src/vxworks/mod.rs:1249:5
|
1249 | pub fn utimes(filename: *const ::c_char, times: *const ::timeval) -> ::c_int;
| ---------------------------------------------------------------------------- similarly named function `utimes` defined here
error[E0425]: cannot find function `lchown` in crate `libc`
--> /root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/unix/fs.rs:1941:28
|
1941 | cvt(unsafe { libc::lchown(path.as_ptr(), uid as libc::uid_t, gid as libc::gid_t) })
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.150/src/vxworks/mod.rs:1207:5
|
1207 | pub fn chown(path: *const c_char, uid: uid_t, gid: gid_t) -> ::c_int;
| -------------------------------------------------------------------- similarly named function `chown` defined here
|
help: a function with a similar name exists
|
1941 | cvt(unsafe { libc::chown(path.as_ptr(), uid as libc::uid_t, gid as libc::gid_t) })
| ~~~~~
help: consider importing this function
|
4 + use crate::os::unix::fs::lchown;
|
help: if you import `lchown`, refer to it directly
|
1941 - cvt(unsafe { libc::lchown(path.as_ptr(), uid as libc::uid_t, gid as libc::gid_t) })
1941 + cvt(unsafe { lchown(path.as_ptr(), uid as libc::uid_t, gid as libc::gid_t) })
|
error[E0425]: cannot find value `AT_FDCWD` in crate `libc`
--> /root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/unix/fs.rs:2039:43
|
2039 | parent_fd.unwrap_or(libc::AT_FDCWD),
| ^^^^^^^^ not found in `libc`
error[E0425]: cannot find value `O_NOFOLLOW` in crate `libc`
--> /root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/unix/fs.rs:2041:58
|
2041 | libc::O_CLOEXEC | libc::O_RDONLY | libc::O_NOFOLLOW | libc::O_DIRECTORY,
| ^^^^^^^^^^ not found in `libc`
error[E0425]: cannot find value `O_DIRECTORY` in crate `libc`
--> /root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/unix/fs.rs:2041:77
|
2041 | libc::O_CLOEXEC | libc::O_RDONLY | libc::O_NOFOLLOW | libc::O_DIRECTORY,
| ^^^^^^^^^^^ not found in `libc`
error[E0425]: cannot find value `AT_FDCWD` in crate `libc`
--> /root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/unix/fs.rs:2130:48
|
2130 | unlinkat(parent_fd.unwrap_or(libc::AT_FDCWD), path.as_ptr(), libc::AT_REMOVEDIR)
| ^^^^^^^^ not found in `libc`
error[E0425]: cannot find value `AT_REMOVEDIR` in crate `libc`
--> /root/.rustup/toolchains/nightly-2024-01-01-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/unix/fs.rs:2130:80
|
2130 | unlinkat(parent_fd.unwrap_or(libc::AT_FDCWD), path.as_ptr(), libc::AT_REMOVEDIR)
| ^^^^^^^^^^^^ not found in `libc`
Some errors have detailed explanations: E0425, E0432.
For more information about an error, try `rustc --explain E0425`.
error: could not compile `std` (lib) due to 9 previous errors