Build results for nightly-2024-03-16 target powerpc64-ibm-aix miri-std

error
Preparing a sysroot for Miri (target: powerpc64-ibm-aix)...
   Compiling compiler_builtins v0.1.108
    Checking core v0.0.0 (/var/lib/does-it-build/.rustup/toolchains/nightly-2024-03-16-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-03-16-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-03-16-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-03-16-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-03-16-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-03-16-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc)
    Checking panic_unwind v0.0.0 (/var/lib/does-it-build/.rustup/toolchains/nightly-2024-03-16-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_unwind)
    Checking panic_abort v0.0.0 (/var/lib/does-it-build/.rustup/toolchains/nightly-2024-03-16-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_abort)
    Checking gimli v0.28.1
    Checking hashbrown v0.14.3
    Checking object v0.32.2
    Checking miniz_oxide v0.7.2
    Checking std_detect v0.1.5 (/var/lib/does-it-build/.rustup/toolchains/nightly-2024-03-16-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-03-16-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:481:12
    |
481 |         Ok(SystemTime::new(self.stat.st_mtime.tv_sec as i64, self.stat.st_mtime.tv_nsec as i64))
    |         -- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `SystemTime`, found `Result`
    |         |
    |         arguments to this enum variant are incorrect
    |
    = note: expected struct `sys::pal::unix::time::SystemTime`
                 found enum `core::result::Result`
help: the type constructed contains `core::result::Result` due to the type of the argument passed
   --> /var/lib/does-it-build/.rustup/toolchains/nightly-2024-03-16-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:481:9
    |
481 |         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-03-16-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` value, propagating a `Result::Err` value to the caller
    |
481 |         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-03-16-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:485:12
    |
485 |         Ok(SystemTime::new(self.stat.st_atime.tv_sec as i64, self.stat.st_atime.tv_nsec as i64))
    |         -- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `SystemTime`, found `Result`
    |         |
    |         arguments to this enum variant are incorrect
    |
    = note: expected struct `sys::pal::unix::time::SystemTime`
                 found enum `core::result::Result`
help: the type constructed contains `core::result::Result` due to the type of the argument passed
   --> /var/lib/does-it-build/.rustup/toolchains/nightly-2024-03-16-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:485:9
    |
485 |         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-03-16-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` value, propagating a `Result::Err` value to the caller
    |
485 |         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-03-16-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:489:12
    |
489 |         Ok(SystemTime::new(self.stat.st_ctime.tv_sec as i64, self.stat.st_ctime.tv_nsec as i64))
    |         -- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `SystemTime`, found `Result`
    |         |
    |         arguments to this enum variant are incorrect
    |
    = note: expected struct `sys::pal::unix::time::SystemTime`
                 found enum `core::result::Result`
help: the type constructed contains `core::result::Result` due to the type of the argument passed
   --> /var/lib/does-it-build/.rustup/toolchains/nightly-2024-03-16-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:489:9
    |
489 |         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-03-16-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` value, propagating a `Result::Err` value to the caller
    |
489 |         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