Reputation: 13238
I'm using CMake with Xcode generator to generate Xcode project to build framework for iOS and tvOS (and other platforms too).
I'm setting IOS_INSTALL_COMBINED
to generate a framework that contains both device and simulator architectures automatically without need of calling lipo
myself.
The problem is that generated .framework.dSYM
is not universal, it has only x86_64
architecture slice. Should I call lipo
manually anyway to merge it myself? I wanted to avoid it and have CMake/Xcode do all the work.
Upvotes: 1
Views: 1188