10

My application is taking very long time around 10 minutes to compile and run on simulator. The application was running fine initially however after adding SUP static library it is taking very long time to build.

xcode version:4.6

I have tried resetting the simulator and restarting the machine

Please help.

user2825821
  • 103
  • 1
  • 1
  • 5
  • There are some ideas to try: - remove build files from organizer - try to use CocoaPods and/or workspace - it gives faster compilation Try to find what is taking time, is it compilation or linking time? – Leszek Zarna Sep 28 '13 at 08:49
  • 1
    CLEAN the project rebuild and run again – Saad Chaudhry Sep 28 '13 at 21:19

1 Answers1

10

As I answered to a similar question, I wrote an extensive blog post about how I improved iOS development cycle at Spotify:

Shaving off 50% waiting time from the iOS Edit-Build-Test cycle

It boiled down to:

1) Stop generating dSYM bundles.

2) Avoid compiling with -O4 if using Clang.

shim
  • 9,289
  • 12
  • 69
  • 108
fons
  • 4,905
  • 4
  • 29
  • 49