You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if we have the following setup,
```
swift_library (
name = "LibA"
plugins = ["//:Macros"],
)
swift_library (
name = "LibB"
plugins = ["//:Macros"],
deps = [":LibA"],
)
```
We would see `-load-plugin-executable /path/to/Macros#Macros` twice
while compiling LibB. With a more complicated dependency graph, we are
seeing hundreds of -load-plugin-executable of the same plugin on some
modules.
This PR deduplicates the plugins arguments.
0 commit comments