Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Filter out 'SwiftToolsSupport' from products
The static Linux SDK is fully statically linked so we can't build shared libraries there.
  • Loading branch information
jakepetroules authored Nov 19, 2025
commit b3ece3662ceb2721f75d5a1205af107be91c901d
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,6 @@ if isStaticBuild {
target.type != .test && !target.name.hasSuffix("TestSupport")
}
package.products = package.products.filter { product in
!product.name.hasSuffix("TestSupport")
!product.name.hasSuffix("TestSupport") && product.name != "SwiftToolsSupport"
}
}