-
Notifications
You must be signed in to change notification settings - Fork 694
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
Drop support for clang <5.0 #2166
Conversation
This should have been added in rust-lang#2155 but was missed then.
Now that we require Clang 5.0, there is no way for this function to return None.
If and when this PR merges, there will be no more instances of |
☔ The latest upstream changes (presumably 6a169f2) made this pull request unmergeable. Please resolve the merge conflicts. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
In the vein of #1807, the current PR removes
bindgen
's support for Clang 4.0. After this PR, the minimum Clang version supported is 5.0.1, which was released on 21 Dec 2017.This PR follows on from #2155, which removed support for versions prior to Clang 4.0. The current PR also cleans up some things that should have been caught when support for Clang <4.0 was removed.