Not a long time ago I updated Xcode to version 4. This new version spent a lot of time on indexing the project (it's quite large). That's why I would like to disable indexing. Searching through Xcode help and internet gave no results.

Thank you in advance!

link|improve this question
feedback

5 Answers

defaults write com.apple.dt.XCode IDEIndexDisable 1

You'll lose some features (autocomplete, jump to definition, some of the assistants won't work right). But you'll gain back ram and cpu.

For my project Xcode went from using 2 Gigs to a few hundred MB. (which I sorely needed to compile with ;)

link|improve this answer
This fixed the issue for me as well. On a moderate sized project one day XCode 4 decided to eat 10GB of virtual memory, I only have 4 GB physical, and sat there spinning for 5 minutes. Every time I tried to start up XCode again it did the same thing. Deleted the workspace file, still the same thing. Disabling indexing using this command addressed the issue. – clemahieu Aug 18 '11 at 4:14
saved my life !!! – rbawaskar Apr 17 at 10:56
feedback

Reducing the priority of the XCode process helps:

renice 10 -p PID

You can get the PID from the Activity Monitor or top/ps commands.

link|improve this answer
This won't help if the problem is memory usage. Xcode will still consume the same amount of memory; it'll just be using it longer. – Peter Hosey Feb 8 at 8:45
True, but it does free up CPU cycles for other tasks. I switched back to XCode 3 for the time being, but I'll have to try 4 with indexing disabled sometime. – Peter Tseng Feb 21 at 19:16
feedback

This problem has been noticed on this newsgroup: http://groups.google.com/group/firebreath-dev/browse_thread/thread/75879aa1d1e8e049/d24951b8925a181c?show_docid=d24951b8925a181c

The crux of it seems to be that XCode4 uses crazy amounts of ram during indexing - like, 5gb or so(!), and thus if you're on a machine with something like 12gb, there's no problem, but if you're on a laptop with only 2gb or so, you'll have some pretty severe paging going on.

I'm guessing apple's internal engineers were all rocking maxed-out mac pros or something.

link|improve this answer
feedback

It's not possible to disable indexing in Xcode 4. Many of the IDE's features are built on top of the index it maintains.

link|improve this answer
feedback

I ran into either the same problem or something similar. My project includes heavily templated C++. Including those headers in the PCH file solved the problem for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.