You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ cargo build error[E0425]: cannot find function `ptsname_r` in this scope --> /data/data/com.termux/files/home/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rexpect-0.6.0/src/process.rs:97:26 | 97 | ...ave_name = ptsname_r(&master_fd)?; | ^^^^^^^^^ not found in this scope
Regards !
The text was updated successfully, but these errors were encountered:
After adding 'use crate::process::nix::pty::ptsname_r;' in ~/.cargo/registr
y/src/index.crates.io-6f17d22bba15001f/rexpect-0.6.0/src/process.rs manually, cargo build outputs
error[E0432]: unresolved import io::UnixIO
--> core/lib.rs:65:9 |
65 | pub use io::UnixIO; | ^^^^^^^^^^ no UnixIO in io
| note: found an item that was configured out
--> core/io/mod.rs:182:23 |
182 | pub use unix::UnixIO; | ^^^^^^
$ cargo build
error[E0425]: cannot find function `ptsname_r` in this scope --> /data/data/com.termux/files/home/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rexpect-0.6.0/src/process.rs:97:26 | 97 | ...ave_name = ptsname_r(&master_fd)?; | ^^^^^^^^^ not found in this scope
Regards !
The text was updated successfully, but these errors were encountered: