-
Notifications
You must be signed in to change notification settings - Fork 10.5k
ClangImporter: correct a duplicated path component #67718
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
Conversation
When computing the path for a non-architecture specific resource, we would append the architecture unconditionally if `-sdk` is used. This would result in the path being miscomputed with the architecture or the architecture duplicated if it was architecture specific. Found by inspection.
@swift-ci please test |
should hopefully fix #67715 |
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! 🙈
@swift-ci please test Windows platform |
@swift-ci please test macOS platform |
@swift-ci please smoke test macOS platform |
@swift-ci please test macOS platform |
1 similar comment
@swift-ci please test macOS platform |
@swift-ci please smoke test macOS platform |
When computing the path for a non-architecture specific resource, we would append the architecture unconditionally if
-sdk
is used. This would result in the path being miscomputed with the architecture or the architecture duplicated if it was architecture specific.Found by inspection.