-
cargo install tokio-console
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
This is probably due to the older version of glibc or linux being used. (memfd_create was added in Linux 3.17, glibc 2.27) Could you provide toolchain information (output of (meta: This is an issue with tokio-console, not tokio, so I've transferred the discussion from tokio-rs/tokio repository.) |
Beta Was this translation helpful? Give feedback.
-
Thanks taiki-e, my glibc version is 2.26
|
Beta Was this translation helpful? Give feedback.
-
Hmm, I think the only thing that uses We should maybe add a feature flag or something to enable/disable journald logging, since it's an extra dependency that may not be needed most of the time, unless you're actually trying to debug the console itself. |
Beta Was this translation helpful? Give feedback.
This is probably due to the older version of glibc or linux being used. (memfd_create was added in Linux 3.17, glibc 2.27)
Could you provide toolchain information (output of
rustc -vV
) and distro information (output ofcat /etc/os-release
)?(meta: This is an issue with tokio-console, not tokio, so I've transferred the discussion from tokio-rs/tokio repository.)