Pham Hoan
Pham Hoan

Reputation: 2127

Xcode6 beta SourceKitService error

I'm running lastest Mavenricks with Xcode 5.1.1

I've downloaded Xcode 6 beta from apple and this message shows up constantly. Thus, I can barely write any code because code completion disabled.

Does anyone know how to fix this ?

enter image description here

Upvotes: 5

Views: 2320

Answers (2)

user1671097
user1671097

Reputation:

Try For it

**

There is a bug in the Swift compiler / indexer. Some line or lines in your code is giving it difficulty. You will have to edit your code with some other text editor to comment out the offending line(s) before you will be able to open that project with Xcode. If you have no clue what the problem is, comment out all your code. Once you have the project open, you can start bringing back code little by little until the rise in CPU activity tells you that you've found the problem.

**

Upvotes: 1

devxoul
devxoul

Reputation: 2228

Is your project named Swift? With seeing that message, build would be failed too with message: <unknown>:0: error: module name "Swift" is reserved for the standard library. Try using another project name such as SwiftTest. It would work.

(Duplicated: SourceKitService Terminated)

Upvotes: 6

Related Questions