Build results for nightly-2024-04-22 target powerpc64-ibm-aix std
Home
error
Preparing a sysroot for Miri (target: powerpc64-ibm-aix)...
Locking 1 package to latest compatible version
Adding custom-local-sysroot v0.0.0 (/tmp/.tmpjA8Y0K)
Compiling compiler_builtins v0.1.109
Checking core v0.0.0 (/var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core)
Compiling libc v0.2.153
Compiling memchr v2.5.0
Compiling std v0.0.0 (/var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std)
Checking rustc-std-workspace-core v1.99.0 (/var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core)
Checking alloc v0.0.0 (/var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc)
Checking cfg-if v1.0.0
Checking adler v1.0.2
Checking unwind v0.0.0 (/var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/unwind)
Checking rustc-demangle v0.1.23
Checking rustc-std-workspace-alloc v1.99.0 (/var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc)
Checking panic_abort v0.0.0 (/var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_abort)
Checking panic_unwind v0.0.0 (/var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_unwind)
Checking gimli v0.28.1
Checking object v0.32.2
Checking hashbrown v0.14.3
Checking miniz_oxide v0.7.2
Checking std_detect v0.1.5 (/var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/stdarch/crates/std_detect)
Checking addr2line v0.21.0
error[E0308]: mismatched types
--> /var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:491:12
|
491 | Ok(SystemTime::new(self.stat.st_mtime.tv_sec as i64, self.stat.st_mtime.tv_nsec as i64))
| -- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `SystemTime`, found `Result<SystemTime, Error>`
| |
| arguments to this enum variant are incorrect
|
= note: expected struct `sys::pal::unix::time::SystemTime`
found enum `core::result::Result<sys::pal::unix::time::SystemTime, io::error::Error>`
help: the type constructed contains `core::result::Result<sys::pal::unix::time::SystemTime, io::error::Error>` due to the type of the argument passed
--> /var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:491:9
|
491 | Ok(SystemTime::new(self.stat.st_mtime.tv_sec as i64, self.stat.st_mtime.tv_nsec as i64))
| ^^^------------------------------------------------------------------------------------^
| |
| this argument influences the type of `Ok`
note: tuple variant defined here
--> /var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/result.rs:506:5
|
506 | Ok(#[stable(feature = "rust1", since = "1.0.0")] T),
| ^^
help: use the `?` operator to extract the `core::result::Result<sys::pal::unix::time::SystemTime, io::error::Error>` value, propagating a `Result::Err` value to the caller
|
491 | Ok(SystemTime::new(self.stat.st_mtime.tv_sec as i64, self.stat.st_mtime.tv_nsec as i64)?)
| +
error[E0308]: mismatched types
--> /var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:495:12
|
495 | Ok(SystemTime::new(self.stat.st_atime.tv_sec as i64, self.stat.st_atime.tv_nsec as i64))
| -- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `SystemTime`, found `Result<SystemTime, Error>`
| |
| arguments to this enum variant are incorrect
|
= note: expected struct `sys::pal::unix::time::SystemTime`
found enum `core::result::Result<sys::pal::unix::time::SystemTime, io::error::Error>`
help: the type constructed contains `core::result::Result<sys::pal::unix::time::SystemTime, io::error::Error>` due to the type of the argument passed
--> /var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:495:9
|
495 | Ok(SystemTime::new(self.stat.st_atime.tv_sec as i64, self.stat.st_atime.tv_nsec as i64))
| ^^^------------------------------------------------------------------------------------^
| |
| this argument influences the type of `Ok`
note: tuple variant defined here
--> /var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/result.rs:506:5
|
506 | Ok(#[stable(feature = "rust1", since = "1.0.0")] T),
| ^^
help: use the `?` operator to extract the `core::result::Result<sys::pal::unix::time::SystemTime, io::error::Error>` value, propagating a `Result::Err` value to the caller
|
495 | Ok(SystemTime::new(self.stat.st_atime.tv_sec as i64, self.stat.st_atime.tv_nsec as i64)?)
| +
error[E0308]: mismatched types
--> /var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:499:12
|
499 | Ok(SystemTime::new(self.stat.st_ctime.tv_sec as i64, self.stat.st_ctime.tv_nsec as i64))
| -- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `SystemTime`, found `Result<SystemTime, Error>`
| |
| arguments to this enum variant are incorrect
|
= note: expected struct `sys::pal::unix::time::SystemTime`
found enum `core::result::Result<sys::pal::unix::time::SystemTime, io::error::Error>`
help: the type constructed contains `core::result::Result<sys::pal::unix::time::SystemTime, io::error::Error>` due to the type of the argument passed
--> /var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:499:9
|
499 | Ok(SystemTime::new(self.stat.st_ctime.tv_sec as i64, self.stat.st_ctime.tv_nsec as i64))
| ^^^------------------------------------------------------------------------------------^
| |
| this argument influences the type of `Ok`
note: tuple variant defined here
--> /var/lib/does-it-build/.rustup/toolchains/nightly-2024-04-22-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/result.rs:506:5
|
506 | Ok(#[stable(feature = "rust1", since = "1.0.0")] T),
| ^^
help: use the `?` operator to extract the `core::result::Result<sys::pal::unix::time::SystemTime, io::error::Error>` value, propagating a `Result::Err` value to the caller
|
499 | Ok(SystemTime::new(self.stat.st_ctime.tv_sec as i64, self.stat.st_ctime.tv_nsec as i64)?)
| +
For more information about this error, try `rustc --explain E0308`.
error: could not compile `std` (lib) due to 3 previous errors
fatal error: failed to build sysroot: sysroot build failed
Build history for target powerpc64-ibm-aix
Build state for nightly 2024-04-22