-
Notifications
You must be signed in to change notification settings - Fork 40
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
WiX: add custom actions to handle Clang resources #198
base: main
Are you sure you want to change the base?
Conversation
4c9d06e
to
a01c70c
Compare
There is a large refactoring that is currently being worked upon, lets hold off on this for a bit to get that through so we can make some progress on Swift in Swift for Windows. |
I’m okay if it can catch up with the 5.9 release, or else we’d take it into the 5.9 branch first. |
Fortunately, this is limited to the installer - so I think that we should be able to bring it into the 5.9 branch once everything is settled. |
a01c70c
to
cc4d6b5
Compare
cc4d6b5
to
e3114b6
Compare
Rebased upon latest changes, tested locally and ready for review @compnerd @shahmishal |
e3114b6
to
373bb9c
Compare
Ping |
Ping @shahmishal @compnerd |
Ping |
There are a few more invasive changes planned for this, so I would rather that we wait a little bit. BTW, can you verify that this works without elevated privileges for the normal user which may not have the SeSymbolicLinkPrivilege enabled? The installer is going to drop the need for elevated privileges and switch to per-user installs. That should make it easier to enable the Swift-in-Swift use case. |
Due to MSBuild restrictions, the `CustomActions` build is out-of-tree. We change the directory to `.output` so it won't go in the Git working tree.
373bb9c
to
18565fe
Compare
@compnerd I think this is ready. I've tested locally with both per-machine (with UAC) and per-user installation (without UAC) and it works smoothly. Since it's basically copy-and-paste, I believe there's nothing to do with |
@stevapple oh, of course! It doesn't need that because it is copying not creating a junction! Okay, that makes sense. BTW, what is the motivation for this again? With the latest fixes, atomics should build fine without this link which I believe is what prompted you to do this in the first place? Could you also please check that this also cleans up on uninstall? |
This is required to bring consistency between what the Swift compiler sees and Clang sees — by exposing Clang’s internal resources to Swift. Atomics is just an example where Clang’s header is involved. Without the piece, the Swift compiler may expand the header differently with Clang, causing mismatch when importing Clang targets. It’s also necessary for Swift driver to link against
Already checked✅ |
I think that this is going in the opposite direction. Swift sees MSVC's headers, clang should see the same. I believe that the bug in modularisation was the cause of the issue. Other than swift-atomics (which I just tested with SPM) do you have any concrete examples of failures?
I'd be curious to understand this first. I don't see this as being the case as at all. The profiling support already works properly. https://github.com/compnerd/swift-win32/blob/main/.github/workflows/coverage.yml#L42 is a concrete example,
Perfect! |
Both Swift and Clang can see MSVC and other global headers, but Clang has internal headers acting as shims. Usually they won't affect existing headers, but they potentially can. Atomics is just an example where Clang provides its own alternative
This is because Swift Driver's profile generation support is implemented differently on Windows than on Linux. Take a look at the highlighted lines below:
On Linux, Swift Driver will find I didn't mean to judge which way is better, but it's cleat that on every other platform we assume Clang resources are accessible in |
The Swift compiler requires Clang resources in
/usr/lib/swift/clang
to use Clang builtins. The layout and content is identical to/usr/lib/clang/<clang_version>
, where we point a symlink on Unix platforms. Since symlinks work differently on Windows and require elevated permission, we copied the directory when building the toolchain, but failed to make it through the installer.A prior attempt was made in #144 using
HarvestDirectory
, but @compnerd pointed out that it'll add to built time, so here comes the custom actions for handling it.Closes swiftlang/swift#60534