Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: JuliaMath/openlibm
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.8.6
Choose a base ref
...
head repository: JuliaMath/openlibm
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.8.7
Choose a head ref
  • 3 commits
  • 6 files changed
  • 3 contributors

Commits on Mar 7, 2025

  1. Update index.html

    ViralBShah authored Mar 7, 2025
    Configuration menu
    Copy the full SHA
    3cfad14 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2025

  1. ci: test with openlibm-test (#327)

    * make: add new target `gen-cov-report`
    
    * ci: test with openlibm-test
    
    * ci: checkout openlibm first
    
    * ci: set OPENLIBM_HOME
    
    * ci: update repo name
    inkydragon authored May 21, 2025
    Configuration menu
    Copy the full SHA
    d463259 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2025

  1. Fix BSD-specific types on Linux for aarch64 (#329)

    The recent addition of aarch64 fenv support uses BSD-specific types
    (__uint64_t and __uint32_t) that are not defined on Linux systems,
    causing compilation failures on aarch64-linux targets.
    
    This commit replaces BSD-specific types with standard C99 types:
    - __uint64_t → uint64_t
    - __uint32_t → uint32_t
    
    These standard types are available on all platforms through the
    included <stdint.h> header.
    
    Additionally, this fixes the initialization of __fe_dfl_env from
    scalar 0 to {0} to match the typedef as a non-scalar type.
    
    Fixes build failures on aarch64-linux-gnu and other non-BSD platforms.
    Keno authored Jun 3, 2025
    Configuration menu
    Copy the full SHA
    9fbeafc View commit details
    Browse the repository at this point in the history
Loading