Xcode - Error creating LLDB target

前端 未结 6 431
北海茫月
北海茫月 2020-12-01 04:09

I\'m getting this error whenever I build in XCode 6 beta 4. It seems to be making my app insanely slow.

Warning: Error creating LLDB

6条回答
  •  失恋的感觉
    2020-12-01 04:46

    This warning is solved by changing Build Settings :

    1. Select Project -> Build Settings
    2. Change 'Architectures' to 'Standard architectures (armv7, arm64) - $(ARCHS_STANDARD)' Step 2

    3. This will prompt an alert stating iOS 5.1.1 and above are supported. Click 'Change Deployment Target to 5.1.1'

    Step 3

    1. Repeat steps for Target (if not changed automatically)

    Step 4

    Also, this is preferred build setting since Apple is forcing developers to build apps on 64 but architecture. Apple document Link

提交回复
热议问题