Search code examples
consolewarningslldbxcode6.1ios8.1

Warning: Error creating LLDB target at some path


I'm running an application on Xcode 6.1 and iPhone (iOS 8.1) simulator. While running I'm getting below log on console window :

Warning: Error creating LLDB target at path '/Users/macbook/Library/Developer/Xcode/DerivedData/..Project.app'- 
using an empty LLDB target which can cause slow memory reads from remote devices.

If I run app in Xcode 5.x and iPhone (iOS 7.x) simulator then there is no such log on console. What might be reason? Will there be an issue if I upload app to app-store.


Solution

  • 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 bit architecture. Apple document Link