-
Notifications
You must be signed in to change notification settings - Fork 213
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
request: add fmodf for x86_64-unknown-uefi #434
Comments
fmodf already exists in the libm crate: https://github.com/rust-lang/libm/blob/master/src/math/fmodf.rs It is only included by compiler-builtins on wasm32-unknown-none, baremetal arm and the fortanix sgx environment though: Lines 45 to 50 in e6fd1b2
|
Then I'd like it to be enabled for x86_64-unknown-uefi =) |
I'd be happy to accept a PR, I think you only need to add a line to that |
Hello! I tried to use several math crates in a sample for x86_64-unknown-uefi and encountered the following issues:
__truncdfsf2
. There is already an issue for it = Missing __truncdfsf2 for aarch64-unknown-none-softfloat #327fmodf
&__trunsdfsf2
.So I would like
fmodf
be added to the builtins. Thanks in advance!The text was updated successfully, but these errors were encountered: