-
Notifications
You must be signed in to change notification settings - Fork 30
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
make this crate work on stable #11
Comments
Bump. I'd definitely love to have this crate available on stable, in order to get rid of a silly libc dependency just for syscall(2). |
This can now be implemented by moving to the recently stabilized |
Happy to take a PR that does this when the feature gate has been removed in a beta release. Please do not open a PR before then. |
On I might take a shot at a patch, but I'm quite terrible at inline assembly. If someone has any expertise with |
I did most of the platforms where the required changes are trivial in PR #33. |
Add a Cargo feature that moves the
asm!
blocks into assembly files (.s
) that get built at compile time. Thesyscall!
macro would then call those external functions viaextern fn
.The text was updated successfully, but these errors were encountered: