I use xcodebuild to build a framework, and I want to find a way to check the bitcode type is -fembed-bitcode or -fembed-bitcode-marker.
As you know, when bitcode type is -fembed-bitcode, the framework is full bitcode supported.
I use xcodebuild to build a framework, and I want to find a way to check the bitcode type is -fembed-bitcode or -fembed-bitcode-marker.
As you know, when bitcode type is -fembed-bitcode, the framework is full bitcode supported.
Use your
xcodebuildcommand and add-showBuildSettingsto the end.Look at the results to see if you can find
-fembed-bitcode, perhaps underOTHER_LDFLAGS.