File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
ZipBuilder/Sources/ZipBuilder Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change
1
+ # Unreleased
2
+ - [ fixed] Fix Zip Builder module map generation that could cause linker missing
3
+ symbol errors in the 6.14.0 through 6.16.0 binary release distributions. (#4819 )
4
+
1
5
# v6.6.1 -- M63
2
6
- [ changed] Minimum required Xcode version changed to 10.3 (was 10.1).
3
7
Original file line number Diff line number Diff line change @@ -172,11 +172,9 @@ struct ModuleMapBuilder {
172
172
podLibraryDeps = dependencyPod. transitiveLibraries
173
173
}
174
174
if let fdeps = podFrameworkDeps {
175
- myFrameworkDeps. subtract ( fdeps)
176
175
transitiveFrameworkDeps. formUnion ( fdeps)
177
176
}
178
177
if let ldeps = podLibraryDeps {
179
- myLibraryDeps. subtract ( ldeps)
180
178
transitiveLibraryDeps. formUnion ( ldeps)
181
179
}
182
180
}
You can’t perform that action at this time.
0 commit comments