I have an issue with Xcode 4 really responding very slowly to user interactions, e.g. editing code, scrolling areas etc. This particularly happens with larger scale projects with many controllers/view files etc.

I completely wiped the hard disk and re-installed Snow Leopard and Xcode the other week but steadily it ground to a frustrating response time again (over a number of days) disrupting workflow considerably.

I have also on occasion removed the project's "derived data" via the Organiser -> Projects and this has had little effect.

I'm wondering if there is anything I can do to improve performance other than get a higher specced machine in the first instance.

FYI I'm running MacBook with Intel Core 2 Duo processors at 2GHz and 4GB of RAM.

In case we need to upgrade I'd also like to know if people are experiencing this poor performance from Xcode 4 on well specced machines (which would make our hardware upgrade rather pointless as it's only Xcode that has any performance issue on the MacBook).

If anybody has any suggestions or recommendations or could even let us know how improved hardware effects Xcode's performance on larger project trees then that would be extremely helpful and also a valuable resource for other devs in a similar position.

link|improve this question

50% accept rate
feedback

12 Answers

up vote 66 down vote accepted

If you purge the workspace file it helps speed it up.

First, make sure Xcode isn't open. Now find your project file. Right-click on it, and select Show Package Contents.

enter image description here

Next, delete project.xcworkspace.

enter image description here

Open Xcode and enjoy faster performance!

Thanks to: http://meachware.blogspot.com/2011/06/speed-up-xcode-4.html

link|improve this answer
Gotta say - this has really helped. Gonna leave this running for a day or so and if performance maintains I'm going to accept this as the answer. Thanks sudo rm -rf. – Kzrbill Jun 16 '11 at 13:41
No problem! Glad to help. :) – sudo rm -rf Jun 16 '11 at 15:53
deleting the workspace did help the problem, but i dont think you really need to get that applet heheh – Bacalso Vincent Jun 24 '11 at 9:28
1  
Wow - I was tearing my hair out due to constant beach balling, and now it's running like a dream. Thanks for the absolutely essential tip. It's worth mentioning that it does temporarily reset your window layout (which may or may not be obvious), but it's a small price to pay. Also, if people want to manually remove the workspace file they can control-click on their xcodeproj file, choose 'show package contents', and then delete or move the .xcworkspace file. – Erik Asmussen Jul 8 '11 at 11:53
3  
@sudo Incredible, but now I've lost my performance excuse and can't buy myself a new, faster MBP!?! – Daniel Blezek Sep 18 '11 at 19:55
show 13 more comments
feedback

Disabling Live Issues in General Preferences has made a definite difference. I also setup a scheme without gdb enabled for situations where I'm frequently re-running (no gdb speeds up launch quite a bit).

link|improve this answer
feedback

I don't know whether this helps anyone, but for me, XCode gained a huge performance increase after setting it to run in 32-bit mode (it was 64 by default). It is almost as fast as the old xcode 3. You can switch to 32 bit by right clicking the app (in /Developer/Applications/XCode.app) and selecting Get Info and checking Open in 32-bit mode.

link|improve this answer
Worked for me, thanks! – Sam Aug 3 '11 at 9:10
Didn't make any difference for me on my MBP 2.2Ghz i7 on 10.6.8. What computer/OS do you have? – ettore Aug 4 '11 at 18:10
I have a Mac Mini with 2.26 Ghz Intel Core 2 Duo, 10.6.8, 2GB memory. – gyozo kudor Aug 5 '11 at 7:12
feedback

None of these responses really improved performance in my case (over time Xcode 4.1 became hardly usable, only quitting it now and then helped).

However, I just found out that if I keep closing all my documents (control-command-W) it seems to stay fast. Xcode automatically keeps all the documents that you click on in memory somehow, and you can navigate between them with control-command left/right arrow. If you accidentally open too many (especially IB windows), it crawls to a halt. Just closing all open docs now and then seems to alleviate this without the need to do a full restart.

link|improve this answer
feedback

The following post by @lukasz helped a bit, particularly his item #8 in his answer (Closed Utility Panel and Quick Help Pane)

Xcode 4 (4.0.1) became extremely slow and kills my hard drive

link|improve this answer
feedback

Everybody experiencing these issues should try Xcode 4.1 on Mac OS X Lion. I am surprised how much faster and responsive it is on the same hardware (Macbook Pro 2.66 GHz Core 2 Duo with 4GB of RAM here).

I suppose they fixed tons of performance bugs with this release.

link|improve this answer
Still slow for me on similar setup. (Xcode 4.1 and Mac OSX Lion on MacBook 2.26 GHz Intel Core 2 Duo, 2 GB RAM) – Andrei Nov 15 '11 at 10:47
feedback

I'm facing the same issues, the were partly fixed since the beta builds but are still persistent. It seems that Xcode internally got one (or more...) leaks which are floating your memory, you can watch this nifty "feature" very well when using the integrated Interface-Builder. Two possible solutions beneath praying and filling bug-reports to apple:

  1. Don't use internal Builder, launch the external application instead
  2. Quit Xcode from time to time, this should free the memory which was leaked

Sorry, but I think there aren't any better solutions....:/

link|improve this answer
I got a brand new iMac Mid 2011, 3,1 i5, 12gb Ram + 1gb graphical memory, the issues don't disturb me very much on here, but before I purchased it I developed to on a MacBook, just get yourself an working machine, it's worth the money, trust me :) – Tim Specht Jun 15 '11 at 9:35
feedback

There is another nice trick to fasten up builds by creating a ram disk with the following line of code:

diskutil erasevolume HFS+ "ramdisk" `hdiutil attach -nomount ram://8475854`

This creates an in-memory disk image with a size of about 4 GB. But be careful, you need to have enough memory. Of course you can create a smaller image like 2 GB (that would be 4237927).

Then you tell Xcode to store derived data there enter image description here

You cannot tell Xcode to store the iPhone Simulator data there directly, but you can create a folder on the ramdisk and create a symbolic link instead of the iPhone Simulator directory by doing this:

cd /Volumes/ramdisk
mkdir iPhone\ Simulator
rm -R ~/Library/Application\ Support/iPhone\ Simulator
ln -s /Volumes/ramdisk/iPhone\ Simulator ~/Library/Application\ Support/iPhone\ Simulator

If I build for the simulator with this setup, it's up and running in no time :)

Be aware that the ram disk will disappear when you restart your machine, so it could be a good idea to create a script or something that runs on startup. AND DON'T PLACE ANY DATA THERE THAT YOU WANT TO KEEP!!!

link|improve this answer
oh man.. this one is really great. but IMPORTANT: this will erase your coredata from the simulator... you'll lose every testresult youve made so far. so thanks for a massively faster build, but the warning would have been nice =) – Sebastian Flückiger Mar 18 at 14:59
feedback

I've tried just about everything that was suggested in this thread and [numerous] others and the only thing that worked for me was to "disable" subversion for the project. Here's the crappy part -- the ONLY way I could "disable" the built-in SVN plugin was to frig my /etc/hosts file with a bogus IP address, effectively causing all SVN access to fail.

I tried removing/renaming the IDESubversion.ideplugin in /Developer/Library/Xcode/PrivatePlugIns, but Xcode 4.2.1 pukes and refuses to start.

I tried removing my SVN repositories from Xcode each and every time I restart Xcode, but Xcode crashes within a few minutes.

I tried turning off "Remote Status" via File->Source Control->Hide Remote Status (did nothing for me).

Now that I've set my SVN hostname to 1.2.3.4 in my hosts file, Xcode works great and doesn't show the SBBOD almost every time I switch between files.

$ grep 1.2.3.4 /etc/hosts
1.2.3.4 svn.myhost.com

Then, when I really want to do version control, I have to un-frig the hosts file and use cmd line svn.

link|improve this answer
feedback

I've found a trick to accelerate the compiling performance of XCode 4:

When you run or compile or any other processing in xcode and it stall open active monitor and select xcode process then click on sample process. It will make the process to unstuck and run again as normal which allow to build app in a reasonable time. At least this works for me.

Will

link|improve this answer
feedback

Fire up Instruments with the time profile template and attach it to the running Xcode (or clang, llvm, etc. if your problem is during builds). You should be able to see the problem pretty quickly. I have seen very different causes on different machines. Version control is often a culprit.

link|improve this answer
feedback

I did a fairly lengthy write-up for Xcode 4.2 in this post:

Why are xcodebuild and Xcode 4.2 so slow?

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.