I am getting these lld-link warnings with a recent Swift 6.4 Windows toolchain:
C:\sandbox\ktraunmueller\compositor\Sources\Win\Compositor-Win>cmake --build --preset relwithdebinfo
...
[131/150] Building Swift Module 'WindowsFoundation' with 52 sources
remark: Incremental compilation has been disabled: it is not compatible with whole module optimization
[135/150] Building Swift Module 'CompositorCore' with 299 sources
remark: Incremental compilation has been disabled: it is not compatible with whole module optimization
[137/150] Building Swift Module 'UWP' with 98 sources
remark: Incremental compilation has been disabled: it is not compatible with whole module optimization
[139/150] Building Swift Module 'WinAppSDK' with 35 sources
remark: Incremental compilation has been disabled: it is not compatible with whole module optimization
[141/150] Building Swift Module 'WinUI' with 63 sources
remark: Incremental compilation has been disabled: it is not compatible with whole module optimization
[143/150] Building Swift Module 'WinInterop' with 5 sources
remark: Incremental compilation has been disabled: it is not compatible with whole module optimization
[145/150] Building Swift Module 'Win2D' with 28 sources
remark: Incremental compilation has been disabled: it is not compatible with whole module optimization
[147/150] Building Swift Module 'WinSupport' with 25 sources
remark: Incremental compilation has been disabled: it is not compatible with whole module optimization
[149/150] Building Swift Module 'Compositor' with 46 sources
remark: Incremental compilation has been disabled: it is not compatible with whole module optimization
[150/150] Linking Swift executable Compositor.exe
lld-link: warning: section name .debug_abbrev is longer than 8 characters and will use a non-standard string table
lld-link: warning: section name .debug_info is longer than 8 characters and will use a non-standard string table
lld-link: warning: section name .debug_line is longer than 8 characters and will use a non-standard string table
lld-link: warning: section name .debug_loc is longer than 8 characters and will use a non-standard string table
lld-link: warning: section name .debug_names is longer than 8 characters and will use a non-standard string table
lld-link: warning: section name .debug_ranges is longer than 8 characters and will use a non-standard string table
lld-link: warning: section name .debug_str is longer than 8 characters and will use a non-standard string table
Is there any detrimental impact to this, or can I safely ignore these warnings?