Skip to content
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

Add cr_hypot from core-math #322

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft

Commits on Oct 26, 2024

  1. Update libm-test/build.rs to skip directories

    Don't try to generate tests for directories, or for files that contain
    `f16` or `f128` (as these types are not provided by musl's math
    implementations).
    
    (cherry picked from commit 76f84e6)
    tgross35 committed Oct 26, 2024
    Configuration menu
    Copy the full SHA
    e8e6ffc View commit details
    Browse the repository at this point in the history
  2. Add float and integer traits from compiler-builtins

    In preparation of adding generic algorithms to `libm`, add the traits
    from `compiler-builtins`.
    
    Eventually we should be able to unify the two crates so we don't have
    duplicate implementations.
    
    (cherry picked from commit 8241ad7)
    tgross35 committed Oct 26, 2024
    Configuration menu
    Copy the full SHA
    4743e80 View commit details
    Browse the repository at this point in the history
  3. Add cr_hypot from core-math

    tgross35 committed Oct 26, 2024
    Configuration menu
    Copy the full SHA
    87bee1f View commit details
    Browse the repository at this point in the history
  4. wrapping

    tgross35 committed Oct 26, 2024
    Configuration menu
    Copy the full SHA
    db0a6e2 View commit details
    Browse the repository at this point in the history