Xcode : */swiftc failed with exit code 11, what can I do?

后端 未结 7 626
悲&欢浪女
悲&欢浪女 2020-12-28 08:41

I downloaded Xcode 7 beta 5, and I tried to compile my project with Xcode 7, and it worked. So, after that, I used Xcode 7 to develop my application, but now, I want to back

相关标签:
7条回答
  • 2020-12-28 08:44

    Shift + command + k works. It will remove the errors .Then compile, It worked for me.

    0 讨论(0)
  • 2020-12-28 08:48

    What worked for me

    1. Delete Application from iPhone or simulator.
    2. Clean Project
    3. Run again
    0 讨论(0)
  • 2020-12-28 09:01

    If cleaning the project & recompiling it doesn't work then

    • Quit XCode
    • Delete the /Library/Developer/XCode/Derived Data folder
    • Start XCode again and compile

    Note: this error can happen when using XCode 6.x and XCode 7.x installed (and used) parallel.

    0 讨论(0)
  • 2020-12-28 09:02

    The xctoolchain error can sometimes be caused by Xcode not finding the location of source files in a project that was moved or started by someone else who had a different project location in their own Finder.

    If you're working on another project started by someone else such as a GitHub open source project, Xcode can mistake the location of the source files.

    Xcode may think ViewController.swift is still in the project folder on the creator's desktop when it's actually on your own desktop. In this case some of your source files may be red because Xcode cannot find them.

    1. Go to the Xcode Identity Inspector on the right side and in the Identity and Type section you'll see the Location pulldown.

    2. Select a red missing file in the Project Navigator on the left.

    3. Make sure the Identity Inspector pulldown is set to 'Relative To Group'.

    4. Click the folder icon underneath to navigate to the real file location, select your file and click Choose. The Full Path will now reflect the correct location.

    5. Clean and rebuild.

    0 讨论(0)
  • 2020-12-28 09:08

    With the same error when compile wikipedia-ios 5.0.

    Clean the project, then recompile, it works for me.

    0 讨论(0)
  • 2020-12-28 09:09

    In my case my submodules were empty which would cause the compiler to crash a simple:

    cd /project/file/path
    git submodule init
    git submodule update
    

    Solved the issue.

    0 讨论(0)
提交回复
热议问题