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
I encountered a compilation error when trying to compile regresshion-check v0.3.2. The error indicates unresolved imports for libc::rlimit, libc::RLIMIT_NOFILE, and libc::getrlimit. on Windows
Error Message
Compiling tokio v1.39.2
Compiling regresshion-check v0.3.2 (C:\Users\xxxx\Downloads\regresshion-check)
error[E0432]: unresolved imports `libc::rlimit`, `libc::RLIMIT_NOFILE`, `libc::getrlimit`
--> src/main.rs:14:12
|
14 | use libc::{rlimit, RLIMIT_NOFILE, getrlimit};
| ^^^^^^ ^^^^^^^^^^^^^ ^^^^^^^^^ no `getrlimit` in the root
| | |
| | no `RLIMIT_NOFILE` in the root
| no `rlimit` in the root
For more information about this error, try `rustc --explain E0432`.
error: could not compile `regresshion-check` (bin "regresshion-check") due to 1 previous error
The text was updated successfully, but these errors were encountered:
Description
I encountered a compilation error when trying to compile
regresshion-check
v0.3.2. The error indicates unresolved imports forlibc::rlimit
,libc::RLIMIT_NOFILE
, andlibc::getrlimit
. on WindowsError Message
The text was updated successfully, but these errors were encountered: