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
fail to building for cargo build --target i686-linux-android, cargo build --target aarch64-linux-android.
error[E0433]: failed to resolve: could not find `linux` in `os`
--> /home/rinat/.cargo/registry/src/index.crates.io-6f17d22bba15001f/interprocess-2.2.1/src/os/unix/uds_local_socket/tokio/stream.rs:36:17
|
36 | use std::os::linux::net::SocketAddrExt;
| ^^^^^ could not find `linux` in `os`
|
note: found an item that was configured out
--> /home/rinat/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/os/mod.rs:36:9
|
36 | pub mod linux {}
| ^^^^^
note: the item is gated here
--> /home/rinat/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/os/mod.rs:28:1
|
28 | / #[cfg(all(
29 | | doc,
30 | | any(
31 | | all(target_arch = "wasm32", not(target_os = "wasi")),
32 | | all(target_vendor = "fortanix", target_env = "sgx")
33 | | )
34 | | ))]
| |___^
note: found an item that was configured out
--> /home/rinat/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/os/mod.rs:76:9
|
76 | pub mod linux;
| ^^^^^
note: the item is gated here
--> /home/rinat/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/os/mod.rs:75:1
|
75 | #[cfg(any(target_os = "linux", doc))]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Compiling alloy-signer v0.4.2
error[E0599]: no method named `as_abstract_name` found for struct `std::os::unix::net::SocketAddr` in the current scope
--> /home/rinat/.cargo/registry/src/index.crates.io-6f17d22bba15001f/interprocess-2.2.1/src/os/unix/uds_local_socket/tokio/stream.rs:37:12
|
37 | if addr.as_abstract_name().is_some() {
| ^^^^^^^^^^^^^^^^
|
::: /home/rinat/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/os/net/linux_ext/addr.rs:63:8
|
63 | fn as_abstract_name(&self) -> Option<&[u8]>;
| ---------------- the method is available for `std::os::unix::net::SocketAddr` here
|
= help: items from traits can only be used if the trait is in scope
help: trait `SocketAddrExt` which provides `as_abstract_name` is implemented but not in scope; perhaps you want to import it
|
1 + use std::os::android::net::SocketAddrExt;
|
help: there is a method `as_pathname` with a similar name
|
37 | if addr.as_pathname().is_some() {
| ~~~~~~~~~~~
Compiling pin-project v1.1.5
Some errors have detailed explanations: E0433, E0599.
For more information about an error, try `rustc --explain E0433`.
Compiling strum_macros v0.26.4
error: could not compile `interprocess` (lib) due to 2 previous errors
warning: build failed, waiting for other jobs to finish...
The text was updated successfully, but these errors were encountered:
fail to building for
cargo build --target i686-linux-android
,cargo build --target aarch64-linux-android
.The text was updated successfully, but these errors were encountered: