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

后端 未结 7 689
悲&欢浪女
悲&欢浪女 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 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.

提交回复
热议问题