-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[PackageLoading] Filter out library creation note from LINK
#4313
base: main
Are you sure you want to change the base?
Conversation
This is caused by Swift Driver no longer defaulting to |
is there another way to deal with this issue? having SwiftPM filter it is a bit of tech debt |
cc @artemcm |
Or we can force using |
We could add an |
bf1d748
to
96744b9
Compare
link.exe
lld
for manifest on Windows
looks better to me, but @compnerd to approve as Windows platform release manager |
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 really would rather retain the ability to use link - there are differences in the linker that has been helpful to compare link vs lld. The C++ never defaulted to lld
either, and that is again by design. We do control the flags by means of the platform providing default flags from the Info.plist. I think that "forcing lld" by means honoring that setting is preferable, and the fact that we don't honor could be argued as being unexpected for the user. (Simply applying those settings will implicitly switch to lld as we do already use lld for the rest of the build)
It would be good to have a way to ignore stdout output from the tools though. The toolchain tools are permitted to write to the console, SPM should be able to deal with that.
I don't think it's correct to just ignore output, there could be actual compiler warnings there which are relevant. Today, we're treating any output as warnings here: https://github.com/apple/swift-package-manager/blob/main/Sources/PackageLoading/ManifestLoader.swift#L492 which maybe is a bit to simple? |
Many tools, particularly on Windows, would print a logo "message", which does make sense to ignore. Ignoring the error stream would be bad, I agree. I think that using lld by means of the platform flags being injected appropriately (i.e. the user can still use |
I think at least the specific problem is resolved, because we're only regarding output as warnings for manifest builds. When building the packages these outputs are just noises that we can decide later about whether and how to filter them. |
The fundamental problem here is that |
that would make things much more palatable. @stevapple do you need any hints from @compnerd on what is going on? |
@stevapple @compnerd what is next with this one? should we close this PR? |
As requested, the only left piece of work is to respect the linker set by environment In the long run, output filtering might be the right direction. Hopefully the new RegEx feature should help a lot there. |
96744b9
to
99df615
Compare
I added a filter per @compnerd’s request, so this shouldn’t override |
lld
for manifest on Windowslld
for manifests on Windows
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.
This still does not do the right thing - honoring the flags. This is hardcoding lld, which is undesirable.
I believe you’re misunderstanding the case here. |
99df615
to
2c09080
Compare
lld
for manifests on WindowsLINK
cc @compnerd, we finally returned to the output filtering path. |
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.
Does this not drop the existing filtering for the rdar workaround? I would rather that we kept that given the intent of the change here.
Why the additional change for recording the compiledManifestFile
to just filter the message?
I don't want to hard-code the naming rule of compiled manifest (it's |
That's a piece of legacy which is useless and can't fit nicely IMO. Maybe we can first remove the workaround in a separate PR? |
2c09080
to
ca94d24
Compare
Cherry-picked to #5760 |
I bet this is ready for test and merge? |
@compnerd @stevapple is there a cleaner way to deal with that does not parse the output? I can see how this would work, but it feels bolted on, rather than a systematic solution |
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 for elaborating on the FIXME
My understanding is that @stevapple's concern is the additional information that is emitted by the (desired) linker. Since there is no way to control that specific message, if we are looking to suppress that message then filtering based on a match seems reasonable. The problem here is that we are trying to invoke tools and process their output based on where the output goes. Although this particular message is presented on stderr, it is not an error nor a warning but rather an informational message. The other option is to consider doing the inverse of this: filtering the acceptance rather than the rejection. From https://learn.microsoft.com/en-us/cpp/build/reference/link-output?view=msvc-170:
We could filter the output explicit for warnings and errors and suppress everything else. That should also accommodate the raised concern I believe. |
Just as I mentioned in |
I think which ever way is being taken, it doesn't seem right as an ad-hoc thing in manifest loader. We should instead know which type of tools we are invoking and could have a filter based on that which is used by the manifest loader. |
IIRC this is a bit out of control — we’re just invoking |
Ah, that is a good point, I think that the chain might actually be: swift-build -> swiftc -> clang -> link. We would have lost the provenance along the way. |
I think if we want to filter, we need to take tighter control of what is happening. So we could split up the compilation process of manifest loading into calling BTW, note that the same process also happens for plugin compilation, so if we just have the filtering at the manifest loading level, we would still get the same type of issue when building a plugin. |
I’m afraid that over-complicates the process. It also unnecessarily duplicates logic between Swift Driver and SwiftPM.
It seems plugin runner is treating compiler output as |
Filter out library creation note from
LINK
inManifestLoader
.Motivation:
We're using
LINK
for linking on Windows by default, and it will always emit a note like this:Since there's no way to opt out, and this isn't a real warning, we should filter it out in
ManifestLoader
.Modifications:
LINK
inManifestLoader
todebug
level.rdar://73710910
workaround.Result:
Users no longer see the false warning of
Creating library ... and object ...
when building the manifest.