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
61ebe01 introduced a new transitive dependency on pwd, which does not build on Android due to getpwent and friends being unavailable in bionic.
error[E0432]: unresolved imports `libc::endpwent`, `libc::getpwent`, `libc::setpwent` --> /data/data/com.termux/files/home/.cargo/registry/src/github.com-1ecc6299db9ec823/pwd-1.3.1/src/unix.rs:2:20
|
2 | use libc::{c_char, endpwent, getpwent, getpwnam, getpwuid, getuid, passwd, setpwent};
| ^^^^^^^^ ^^^^^^^^ no `getpwent` in the root ^^^^^^^^ no `setpwent` in the root
| | no `endpwent` in the root
| help: a similar name exists in the module
|
2 | use libc::{c_char, endpwent, getutent, getpwnam, getpwuid, getuid, passwd, setpwent};
| ~~~~~~~~ help: a similar name exists in the module
|
2 | use libc::{c_char, endpwent, getpwent, getpwnam, getpwuid, getuid, passwd, setutent};
| ~~~~~~~~
For more information about this error, try `rustc --explain E0432`.
error: could not compile `pwd` due to previous error
The text was updated successfully, but these errors were encountered:
SuperCuber
changed the title
[BUG] watchexec2 breaks build on termux
[BUG] watchexec2 breaks build on termux and will soon stop compiling
Mar 22, 2023
Additionally current version of watchexec pulls in dependencies that will stop compiling soon. Should update to latest release, however there are breaking changes.
Environment
Description
61ebe01 introduced a new transitive dependency on
pwd
, which does not build on Android due togetpwent
and friends being unavailable in bionic.The text was updated successfully, but these errors were encountered: