Build results for nightly-2024-06-13 target powerpc64-ibm-aix std

Home
error

Build date: 2025-07-08T14:05:09.846Z

Build duration: 36.699s

Builder does-it-build commit: 87ff3d03

    Blocking waiting for file lock on package cache
    Blocking waiting for file lock on package cache
    Blocking waiting for file lock on package cache
    Blocking waiting for file lock on package cache
   Compiling compiler_builtins v0.1.109
   Compiling core v0.0.0 (/root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core)
   Compiling rustc-std-workspace-core v1.99.0 (/root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core)
   Compiling alloc v0.0.0 (/root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc)
   Compiling rustc-std-workspace-alloc v1.99.0 (/root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc)
   Compiling libc v0.2.155
   Compiling cfg-if v1.0.0
   Compiling memchr v2.5.0
   Compiling unwind v0.0.0 (/root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/unwind)
   Compiling gimli v0.29.0
   Compiling adler v1.0.2
   Compiling std v0.0.0 (/root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std)
   Compiling miniz_oxide v0.7.3
   Compiling addr2line v0.22.0
   Compiling panic_unwind v0.0.0 (/root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_unwind)
   Compiling object v0.36.0
   Compiling panic_abort v0.0.0 (/root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_abort)
   Compiling std_detect v0.1.5 (/root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/stdarch/crates/std_detect)
   Compiling hashbrown v0.14.5
   Compiling rustc-demangle v0.1.24
error[E0308]: mismatched types
   --> /root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:470:12
    |
470 |         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 `pal::unix::time::SystemTime`
                 found enum `core::result::Result<pal::unix::time::SystemTime, io::error::Error>`
help: the type constructed contains `core::result::Result<pal::unix::time::SystemTime, io::error::Error>` due to the type of the argument passed
   --> /root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:470:9
    |
470 |         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
   --> /root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/result.rs:531:5
    |
531 |     Ok(#[stable(feature = "rust1", since = "1.0.0")] T),
    |     ^^
help: use the `?` operator to extract the `core::result::Result<pal::unix::time::SystemTime, io::error::Error>` value, propagating a `Result::Err` value to the caller
    |
470 |         Ok(SystemTime::new(self.stat.st_mtime.tv_sec as i64, self.stat.st_mtime.tv_nsec as i64)?)
    |                                                                                                +

error[E0308]: mismatched types
   --> /root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:474:12
    |
474 |         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 `pal::unix::time::SystemTime`
                 found enum `core::result::Result<pal::unix::time::SystemTime, io::error::Error>`
help: the type constructed contains `core::result::Result<pal::unix::time::SystemTime, io::error::Error>` due to the type of the argument passed
   --> /root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:474:9
    |
474 |         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
   --> /root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/result.rs:531:5
    |
531 |     Ok(#[stable(feature = "rust1", since = "1.0.0")] T),
    |     ^^
help: use the `?` operator to extract the `core::result::Result<pal::unix::time::SystemTime, io::error::Error>` value, propagating a `Result::Err` value to the caller
    |
474 |         Ok(SystemTime::new(self.stat.st_atime.tv_sec as i64, self.stat.st_atime.tv_nsec as i64)?)
    |                                                                                                +

error[E0308]: mismatched types
   --> /root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:478:12
    |
478 |         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 `pal::unix::time::SystemTime`
                 found enum `core::result::Result<pal::unix::time::SystemTime, io::error::Error>`
help: the type constructed contains `core::result::Result<pal::unix::time::SystemTime, io::error::Error>` due to the type of the argument passed
   --> /root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys/pal/unix/fs.rs:478:9
    |
478 |         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
   --> /root/.rustup/toolchains/nightly-2024-06-13-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/result.rs:531:5
    |
531 |     Ok(#[stable(feature = "rust1", since = "1.0.0")] T),
    |     ^^
help: use the `?` operator to extract the `core::result::Result<pal::unix::time::SystemTime, io::error::Error>` value, propagating a `Result::Err` value to the caller
    |
478 |         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

    

Build history for target powerpc64-ibm-aix

Build state for nightly 2024-06-13