I'm developing a framework for tvOS in Xcode 9.1. This framework includes a static library (which I compiled and is bitcode enabled).
The problem is that the framework isn't bitcode enabled. I'm using otool to check whether it is bitcode enable or not:
tool -l blabla.Framework/myFramwork | grep __LLVM
and I get nothing (which means bitcode disabled)
In the build setting in Xcode the option "bitcode enable" doesn't exists.
As I understand bitcode is mandatory for tvOS and the default settings should be YES but somehow it doesn't happened.
What am I missing? What do I need to add?