Search code examples
iosswiftios-simulatorxcode12

Cannot build project with Xcode 12.0 beta 5


I downloaded Xcode 12.0 beta 5 and I'm trying to build my project, but I received the following error:

<unknown>:0: error: unable to load standard library for target 'arm64-apple-ios9.0'

I tried searching online for solutions, but none of what I found helped me to solve this error. I found this thread on SO but none of the proposed solutions worked for me.

I think it's an error related to simulator. In fact, the project builds correctly with generic device and on a real device.


Solution

  • Your error message is quite minimal but shows that you're trying to build for iOS 9.0 - I would check your Build Report in the navigator for a more helpful error message. I have a few hunches about the issue:

    1. The Xcode 12 Beta 6 Release Notes include new "deprecations" which only support specific iOS Simulator versions:

    Deprecations When running in macOS 11, Simulator supports iOS 11.4 or later. (59938106)

    However, building for device supports iOS 9 and above:

    Deprecations Xcode now supports debugging apps and running tests on iOS devices running iOS 9.0 and above. (59561001)

    1. Worth checking the contents of Contents -> Developer -> Platforms -> iPhoneOS.platform -> DeviceSupport for iOS 9. Make sure you've got simulator device support files in here.

    2. Also if you have previous Xcode betas installed, make sure you set the Command Line Tools again to the latest Xcode beta you want to use (they get deactivated if you install a new version of Xcode).

    3. As mentioned in other answers, remove the $(VALID_ARCHS) build setting from your main and CocoaPods targets .

    4. Check your Architecture Build Settings are set to $(ARCHS_STANDARD) for all targets. It's strange that you are using the arm architecture - usually simulator builds are x86_64, hence you need to address any conflicting architecture build settings (are you using Mac Catalyst or the Developer Transition Kit perhaps?).

    build settings

    1. Disable these scheme settings (in Edit Scheme in the toolbar), as well as Main Thread Checker. This works as a workaround for many build/runtime bugs in Xcode.

    scheme settings

    1. Also, I would check if you are using the new Build System for your build settings for Pods and app targets. Conflicting settings here could be the issue. From Xcode 12 Beta Release Notes:

    The legacy build system is deprecated, and will be removed in a future release. (62742902)

    For each of these steps, make sure you clear Derived Data and rebuild. It would also be a good idea to restart Xcode between attempts. If none of the 7 suggestions work then I would recommend you raise a bug ticket on Feedback Assistant. Xcode is going through a lot of rapid improvements in the beta phase, so there is probably going to be some unexpected behaviour.