I have a static library that is built by other company. I want to know if it\'s a static library containing bitcode, which command can detect it in terminal?
You can try: otool -l (.o or .a file)
and look for "__bitcode" section
It was answered here: How do I xcodebuild a static library with Bitcode enabled?