-
Notifications
You must be signed in to change notification settings - Fork 199
Forward --ld-path to linker driver #1416
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
@swift-ci test |
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.
I think that this should map to -B
. Why is -tools-path
insufficient?
@compnerd I think mapping |
Multiple |
@swift-ci test |
@compnerd fyi following up on your comment about |
Patching those in a follow-up PR makes sense to me. |
@swift-ci test windows |
This PR defines an `--ld-path` option for the Swift Driver, which is forwarded to the Clang linker-driver option with the same name. This change is required to support the `toolset.linker.path` option in [SE-0387](https://github.com/apple/swift-evolution/blob/main/proposals/0387-cross-compilation-destinations.md). ## See Also Downstream: swiftlang/swift-driver#1416, swiftlang/swift-package-manager#6719.
This PR introduces an
--ld-path
option, which is forwarded to the Clang linker-driver option with the same name. This change is required to support thetoolset.linker.path
option in SE-0387.See also
Upstream: swiftlang/swift#67956.
Downstream: swiftlang/swift-package-manager#6719.