Required for e.g. linking iOS apps since they don't have a platform-native
SDK
Details
- Reviewers
compnerd smeenai - Group Reviewers
Restricted Project - Commits
- rG25367dfefb7b: [lld-macho] Add .tbd support for frameworks
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
lld/MachO/Driver.cpp | ||
---|---|---|
87 | The name makes it seem like it will match base.*. What do you think of findWithAllowedExtensions? |
lld/MachO/Driver.cpp | ||
---|---|---|
87 | findWithExtensions? Avoids the misleading Any and is shorter :) |
remove comment
lld/MachO/Driver.cpp | ||
---|---|---|
122 | It just checks for the non-suffixed name when considering tbds. I debated on whether I should add a test for this behavior, since it's not clear to me that ld64 intended for it to work this way. The test might just be codifying an irrelevant implementation detail... |
lld/MachO/Driver.cpp | ||
---|---|---|
122 | Sure, makes sense. |
The name makes it seem like it will match base.*. What do you think of findWithAllowedExtensions?