Open
Bug 2057660
Opened 9 days ago
Updated 5 days ago
We're using rust's compiler_builtins for fmod, rather than glibc (on linux)
Categories
(Core :: JavaScript Engine, task, P4)
Core
JavaScript Engine
Tracking
()
NEW
People
(Reporter: mgaudet, Unassigned)
References
(Blocks 1 open bug)
Details
Which is important because the glibc one is appreciably faster than the compiler_builtin one. 2-3x faster.
It's unclear if this is shell only at the moment; but in the shell we get
libjs_static.a
libpure_virtual.a
libjsrust.a
-lm
When libjsrust.a is processed, fmod is unresolved, so its weak implementation is extracted before glibc is considered.
(looking into browser as we speak too)
| Reporter | ||
Updated•5 days ago
|
Blocks: sm-runtime
| Reporter | ||
Updated•5 days ago
|
Severity: -- → S3
Priority: -- → P4
You need to log in
before you can comment on or make changes to this bug.
Description
•