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

Remove build-time check for stdsimd feature #183

Merged
merged 2 commits into from Nov 10, 2023

Commits on Nov 1, 2023

  1. Remove build-time check for stdsimd feature

    This is blocking rust-lang/rust#117372, which replaces `stdsimd` with
    more fine-grained features. However the auto-detection in aHash breaks
    when bootstrapping Rust because it detects the `stdsimd` feature on the
    old toolchain which is not present on the newly build libcore.
    
    This PR removes the build-time detection of the `stdsimd` feature and
    instead just uses the ARM AES intrinsics directly since they are now
    stable, but only on AArch64.
    Amanieu committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    dba28d4 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2023

  1. Configuration menu
    Copy the full SHA
    97a2726 View commit details
    Browse the repository at this point in the history