-
Notifications
You must be signed in to change notification settings - Fork 7.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
realpath
libc defined but not implemented (IDFGH-6119)
#7798
Comments
realpath
libc defined but not implementedrealpath
libc defined but not implemented (IDFGH-6119)
@ivmarkov Thanks for the suggestion, we can implement |
Sure - the linked code was just an example that the function can be trivially implemented in terms of parsing the path and handling the If you decide to implement this one, perhaps it makes sense to also implement:
|
@igrr
Please merge into v4.4 |
Backported to release/v4.4 in f158a0d, will be part of v4.4-rc1. |
Currently, the Rust STD equivalent of
realpath
(fs::canonicalize) is implemented to call intorealpath
, and as a result, usage offs::realpath
results in a linkage error. This is not so ideal.How do we feel about implementing
realpath
in ESP-IDF itself? Basically "Option A" as documented here:https://github.com/ivmarkov/rust-esp32-std-demo/blob/6611e765441d8cc3a6d018ece935f521b4fe7e79/src/main.rs#L975
The text was updated successfully, but these errors were encountered: