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 no_std detection for target triples #69563

Merged
merged 1 commit into from
Feb 29, 2020
Merged

Fix no_std detection for target triples #69563

merged 1 commit into from
Feb 29, 2020

Commits on Feb 28, 2020

  1. Fix no_std detection for target triples

    The current check for wether a target is no_std or not is matching for the
    string "-none-" in a target triple. This doesn't work for triples that end in
    "-none", like "aarch64-unknown-none".
    
    Fix this by matching for "-none" instead.
    
    I checked for all the current target triples containing "none", and this should
    not generate any false positives.
    
    This fixes an issue encountered in #68334
    andre-richter committed Feb 28, 2020
    Configuration menu
    Copy the full SHA
    7cf2bfb View commit details
    Browse the repository at this point in the history