Warning: Error creating LLDB target at path. the specified architecture 'arm64-*-*' is not compatible with 'x86_64-apple-ios13.2.0-simulator'

Every time my app runs in the simulator I see this error:

Warning: Error creating LLDB target at path '/Users/aaronsmith/Library/Developer/Xcode/DerivedData/Babylist-ahvzjxxrpawwqhecszqeyvjstfca/Build/Products/Debug-iphonesimulator/Babylist.app'- using an empty LLDB target which can cause slow memory reads from remote devices: the specified architecture 'arm64--' is not compatible with 'x86_64-apple-ios13.2.0-simulator' in '/Users/aaronsmith/Library/Developer/Xcode/DerivedData/Babylist-ahvzjxxrpawwqhecszqeyvjstfca/Build/Products/Debug-iphonesimulator/Babylist.app/Babylist'

What is this? I'm on an M1, no build issues. It makes me think the simulator is running under rosetta with x68_64. But I didn't choose to do that.

Mac OS Ventura. Xcode 14 RC.

Post not yet marked as solved Up vote post of gngrwzrd Down vote post of gngrwzrd
4.2k views

Replies

Interesting addition, my Podfile specifies:

platform :ios, '13.2'

...

post_install do |pi|
pi.pods_project.targets.each do |t|
    t.build_configurations.each do |config|
      config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.2'
    end
  end
end

Is the error from a framework that is not compatible with apple arm arm64?

  • Same problem here. Did you find a solution?

Add a Comment

I have the same problem. Have you salved that ?

Same problem

I have the same problem. Have you salved that ? Xcode Version 14.3.1 (14E300c)