grimdox
grimdox

Reputation: 92

Xcode 6 constantly freezing

Does anyone have any idea what the problem could be?

It constantly gets Not Responding.

Resources shouldn't be a problem (i7 2.2, 16 gb ram, SSD).

Xcode version: Version 6.0.1 (6A317)

I couldn't find any solution.

Upvotes: 2

Views: 3193

Answers (2)

jamesphuket
jamesphuket

Reputation: 11

Open a terminal and run the following command:

rm -rf "$(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang/ModuleCache"

Look for the following file in ~/Library/Caches and delete it: com.apple.dt.Xcode

Back in your terminal, run the following commands:

rm -r Library/Developer/Xcode/DerivedData

rm -r Library/Developer/Xcode/xcuserdata

Upvotes: 1

Valentin
Valentin

Reputation: 3302

I had the exact same problem. To resolve this:

1. Close Xcode
2. Open Terminal
3. Type defaults delete com.apple.dt.Xcode
4. Re-open Xcode

Xcode is reset to its default settings - do NOT change appearance. It will never freeze again (at least mine hasn't). Hope this helps!

Upvotes: 2

Related Questions