We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
According to the docs
This [pic] option defaults to false for windows-gnu and bare metal targets and to true for all other targets.
This means the bare metal target aarch64-unknown-none should default to false, but the current logic only looks for -none-, and not -none.
aarch64-unknown-none
-none-
-none
The text was updated successfully, but these errors were encountered:
disable pic for targets that end in -none
9c776cf
This fixes rust-lang#1211
270ec65
Successfully merging a pull request may close this issue.
According to the docs
This means the bare metal target
aarch64-unknown-none
should default to false, but the current logic only looks for-none-
, and not-none
.The text was updated successfully, but these errors were encountered: