-
Notifications
You must be signed in to change notification settings - Fork 88
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
sys_sendto
and sys_recvfrom
are missing
#967
Comments
ps: when i build the testudp example it works fine |
It would be useful to know, which crate this linker error is coming from. @stlankes, I found |
full error output:
|
Ah, that's interesting. We'll need to implement Until then, |
sys_sendto
and sys_recvfrom
are missing
I pinged @stlankes about this again, yesterday. He'll look into this. :) |
Yes, I will do it soon! |
This extension of the kernel interface solves partly issue hermit-os#967
This extension of the kernel interface solves partly issue hermit-os#967
This extension of the kernel interface solves partly issue hermit-os#967
@mkroening @dpogorzelski If you like, you can test PR #1007 |
This extension of the kernel interface solves partly issue hermit-os#967
When building against hermit 0.7 i'm running into the following linker issues:
rust-lld: error: undefined symbol: sys_sendto
rust-lld: error: undefined symbol: sys_recvfrom
Based on my understanding the default feature set should supply network capabilities via tcp and udp features.
Any ideas as to why I'm still running into the issue?
Should dependencies supplying networking features be calling
use hermit as _;
or it's enough for my crate to do so?Thanks ! :)
The text was updated successfully, but these errors were encountered: