These are slightly easier-to-use versions of -sub_library and -sub_umbrella.
Details
Details
- Reviewers
int3 gkm - Group Reviewers
Restricted Project - Commits
- rG78ce89bb1e80: [lld/mac] Implement -reexport_framework, -reexport_library, -reexport-l
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
lld/MachO/Driver.cpp | ||
---|---|---|
335–336 | How about having a setter on DylibFile that sets both reexport and config->hasReexports? (if you do add it, markReexport() can use it too) |
Comment Actions
Thanks!
lld/MachO/Driver.cpp | ||
---|---|---|
335–336 | I was planning on deleting config->hasReexports and computing it by walking over all dylib files in the one place we need it in a follow-up. (I need to add some tests around the interaction of dead_strip_dylibs and reexports, too.) |
How about having a setter on DylibFile that sets both reexport and config->hasReexports?
(if you do add it, markReexport() can use it too)