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

Fix build error with targets that do not support atomic CAS operations #12

Merged
merged 2 commits into from
May 11, 2021

Commits on May 11, 2021

  1. Fix build error with targets that do not support atomic CAS operations

    Some no-std targets (e.g., ARMv6-M) do not support atomic CAS
    operations and cannot use `Arc`, etc. This patch detects those targets
    using the `TARGET` environment variables provided by cargo for the
    build script, and a list of targets that do not support atomic CAS
    operations.
    taiki-e committed May 11, 2021
    Configuration menu
    Copy the full SHA
    f662147 View commit details
    Browse the repository at this point in the history
  2. consider cfg as private

    taiki-e committed May 11, 2021
    Configuration menu
    Copy the full SHA
    f7f1b95 View commit details
    Browse the repository at this point in the history