-
Notifications
You must be signed in to change notification settings - Fork 197
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
[Unix] Go back to only checking the runtime resource path for swiftrt.o #1822
base: main
Are you sure you want to change the base?
Conversation
Ready for review along with the required linked frontend pull, which passed the linux CI when tested with this pull (this pull has no effect on Darwin and Windows). Comments should mostly go there, since this is just a consequence of that pull. |
@swift-ci please test |
Alright, this is ready to go, a partial revert of #1667, independent of the linked changes in swiftlang/swift#79621. This pull alone passed CI, along with a full Windows toolchain build. I'd like to get this into 6.1 also next. Some background: the prior change checked the As for the original cross-compilation model referenced in that doc, which is still the one commonly used, this change I'm reverting often breaks builds because @artemcm, please review. @compnerd, let us know what you think. |
Ping @artemcm, mind approving this? I'd like to get it into 6.1 next and I don't think Saleem will respond. Ever since I argued against this change in the linked pull last year, I have occasionally raised the problems that this caused, eg swiftlang/swift#76381, and got no response. I think they were probably experimenting with new SDK layouts at the time, tried this hack, then moved on to other things. Let's fix this now, otherwise it is going to start breaking 6.1 SDK bundles and toolchain builds on Unix, ie the two main scenarios where an |
@etcwilde, mind reviewing this? I suspect I'm not going to get a response from those above, since they approved the original pull that broke this, and I'd like to get this fixed before it finally ships in 6.1. |
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.
swiftrt.o is associated with the SDK content though so that the sections are set up correctly for the implementation of swift_addNewDSOImage
coming from the stdlib.
During the hybrid phase, this means that we should be grabbing swiftrt from the same place that we found libswiftCore (either via the sdk or resource-dir), though for expedience I'm fine with not hooking that exact logic up today.
As a compromise, can we continue to search the SDK first, and if it's not found there, fall back on the resource-dir?
"SDK" can mean different things under the different cross-compilation models, so I try to be more specific. Most compilation does not set the
The problem with this previous Unix change for most cross-compilation SDK bundles is that they use the old model of As for searching both, the problem is it might find a |
Ping @etcwilde or @artemcm, I think this should be merged before the 6.1 release, as SDK bundles and building the Swift toolchain itself with Swift 6.1 is going to start breaking on non-Darwin Unix otherwise, as shown in swiftlang/swift#76381. I get these runtime resources from an external |
@shahmishal, could you take a look at this, as it's been a couple weeks and I haven't really been able to get a review here? I tried building the 6.1 compiler with a prebuilt 6.1 on linux to see if the change this is reverting broke anything and it didn't, as the compiler build is careful to use clang for linking Swift executables instead of swift-driver, but the moment that changes, this previous change that I'm reverting will break the compiler build. It has already broken cross-compiling with SDKs on my Android CI with the I'm asking you since you're the review manager for linux and I'd like to get this into 6.1 next. |
@al45tair, I know that this will affect the static linux SDK, do you have feedback?
This is true. But we are also moving away from the model where the SDK content is shoved in the compiler resource directory. @compnerd, you were driving the push to split the system C sysroot flag from the SDK flag. What is missing in |
Essentially nothing has been done to make that move, other than this change looking for a single file alone, which means currently under your new model, the 6.1 compiler always looks in two different directories for Swift runtime resources like
Yes, the invocation in swiftlang/swift#76381 is using the current |
Sigh, with all the delays in reviewing this, 6.1 has now shipped with this regression, so we'll have to fix it in a patch release. |
This is made possible by the swift-frontend now setting this instead in swiftlang/swift#79621. More changes incoming...