Skip to content

Commit eb69dcc

Browse files
authored
Include transitive deps in module maps (#4895)
1 parent fae5c43 commit eb69dcc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

FirebaseCore/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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+
15
# v6.6.1 -- M63
26
- [changed] Minimum required Xcode version changed to 10.3 (was 10.1).
37

ZipBuilder/Sources/ZipBuilder/ModuleMapBuilder.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,11 +172,9 @@ struct ModuleMapBuilder {
172172
podLibraryDeps = dependencyPod.transitiveLibraries
173173
}
174174
if let fdeps = podFrameworkDeps {
175-
myFrameworkDeps.subtract(fdeps)
176175
transitiveFrameworkDeps.formUnion(fdeps)
177176
}
178177
if let ldeps = podLibraryDeps {
179-
myLibraryDeps.subtract(ldeps)
180178
transitiveLibraryDeps.formUnion(ldeps)
181179
}
182180
}

0 commit comments

Comments
 (0)