How to speedup xcode builds without any project modifications?

前端 未结 5 1598
囚心锁ツ
囚心锁ツ 2021-02-01 10:22

Last version or XCode (3.2.1) is running very slow on OS X 10.6.

What kinds of tweaks can you do to your Mac in order to speedup Xcode build process.

相关标签:
5条回答
  • 2021-02-01 10:25

    For Xcode 4 this is now:

    defaults write com.apple.dt.Xcode IDEBuildOperationMaxNumberOfConcurrentCompileTasks 4

    0 讨论(0)
  • 2021-02-01 10:27

    Disabling code sense indexing can free considerable amounts of memory and CPU in large/complex projects, while speeding up the IDE itself.

    Xcode 3

    Use Preferences from the app.

    Xcode 4

    defaults write com.apple.dt.XCode IDEIndexDisable 1

    0 讨论(0)
  • 2021-02-01 10:34

    I think I may got Xcode to build at decent speed with this command:

    # Xcode 3.x
    defaults write com.apple.Xcode PBXNumberOfParallelBuildSubtasks 4
    
    # Xcode 4.x
    defaults write com.apple.dt.Xcode IDEBuildOperationMaxNumberOfConcurrentCompileTasks 4
    

    This will limit the number of processes executed when it does build. Before adding this to my machine (4 cores/3GB RAM) the build process was slower than on single core!

    I think that XCode is not able to estimate the right limit of subtasks by itself because it does the estimate by looking only at your number of cores and ignoring the amount of RAM you have.

    0 讨论(0)
  • 2021-02-01 10:47

    I recall seeing someone recently whose Xcode speed issues were resolved by reinstalling Xcode.

    If you do this, you might want to save your documentation downloads and restore them after reinstalling. It will save you from a long download. You can find the documentation files by going to Preferences / Documentation. Click the little "i" next to a Doc Set and then choose "reveal in finder" from the small window.

    0 讨论(0)
  • 2021-02-01 10:51

    Take a look at Activity Monitor and see if any other processes are taking CPU time (e.g. Spotlight or Time Machine). Also look at the System Memory tab in Activity Monitor to see whether you're paging.

    0 讨论(0)
提交回复
热议问题