Xcode 14 - XCFramework BCSymbolMaps missing for iOS Simulator destination.

I am creating XCFramework by combining archives of iOS and iOS Simulator. From Xcode 14 I observed BCSymbolMaps missing for iOS Simulator destination.

In previous Xcode versions (Xcode 13.x.x), BCSymbolMaps were generated even for iOS Simulator.

I use following command to generate archive

xcodebuild archive -workspace MySDK.xcworkspace -scheme MYSDK -sdk iphonesimulator SKIP_INSTALL=NO -archivePath build/iPhoneSimulator

BCSymbolMaps were generated for iOS target.

xcodebuild archive -workspace MySDK.xcworkspace -scheme MYSDK -sdk iphoneos SKIP_INSTALL=NO -archivePath build/iPhoneOS

Any one know about this? why Xcode 14 not generating BCSymbolMaps for simulator target, while older Xcode versions were generating BCSymbolMaps?

-Thanks in advance.

My understanding — based on reading Adding Identifiable Symbol Names to a Crash Report — is that BCSymbolMaps are only relevant if you submit bitcode to the App Store, and Xcode 14 no longer does that. See the comment in the Xcode 14 Release Notes.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Have you solution?

Xcode 14 - XCFramework BCSymbolMaps missing for iOS Simulator destination.
 
 
Q