vote up 10 vote down star
1

How long can a compile time get before it starts becoming a distraction to you?

For me:

  • <1 sec, I don't notice
  • >1 min, I'm going for coffee
  • >10 min, S.O. here I come

(any other programming task that involves letting the computer do it's thing also apropos)

flag

50% accept rate
How is this even a question? – Rich B Sep 25 '08 at 22:43
like the link to xkcd! (-: – Rob Wells Sep 25 '08 at 22:47
Its relevant if you want to know when to start improving your build system. – BCS Sep 25 '08 at 22:49
A little subjective I think, I could be lazy and like build times of > 1 day... – Xian Sep 25 '08 at 22:53

11 Answers

vote up 2 vote down check

I believe Caper Jones discussed some studies in which anything greater than a 1 second delay broke people out of the zone (my gist), and that the time / productivity lost due to that small delay was really an order of magnitude larger than it appeared.

Don't have a weblink, except to the book I read it in: http://www.amazon.com/Applied-Software-Measurement-Assuring-Productivity/dp/0070328269 . When I had read that (I was managing back then), I had some extra RAM ordered for a developer who was complaining about his RAM consumption even though I didn't have the budget for it. Figured $100 was well worth it.

link|flag
Added link to the caper jones book. Sorry, I didn't read it on the web, just from the book. – torial Sep 26 '08 at 21:00
vote up 2 vote down

Sorry for being serious;

The better I get at testing the less concerned I get with build times.

I find I can work for days at a time without starting the application. Why should I, it works anyway ?

link|flag
Especcially if you have edit-and-continue. That saves a lot of builds. – Mike Dunlavey Nov 25 '08 at 14:25
vote up 1 vote down

Separate build machine (virtual or physical) that does as-needed or periodic builds.

As the build is progressing, work on the next task, or work towards something else in your productivity zone.

link|flag
vote up 1 vote down

Two people already beat me to the obligatory xkcd.

Compile times for us can take as long as 15 minutes for nontrivial changes, even with some of the validation checks turned off. For certain tasks, I don't mind alt-tabbing and just reading slashdot during that time, but when I'm effectively building a house of cards, then every time I have to wait for the IDE cough RAD cough to finish thinking, it just sets me back and aggravates me further. Having to wait for the type hierarchy cache to be recreated is equally aggravating.

link|flag
vote up 1 vote down

It's never long enough for me to have time to go for a coffee, even when I do a "build all" on our 2.8 million lines...
But I'm spoiled: we use Delphi.

So the coffee break is when I sync the source code. ;-)

link|flag
vote up 1 vote down

When alt-tabbing is easy, any delay is a temptation to be distracted from work. I try, however, to multitask between several work activities. So if I need to do a big svn checkout or long build, I'll "context switch" to another work task that is ongoing that can keep me busy.

Sometimes thats not possible though, or there's no second work activity to do, so I end up writing comments on stackoverflow about my lack of productivity ;)

link|flag
vote up 0 vote down

Long compilations also provide ample opportunities for office swordfighting

link|flag
I suspect this question was engineered to win a bet along the lines of "there'll be at least x references to xkcd with y minutes..." – Paul Dixon Sep 25 '08 at 22:48
Damn, I even missed the link in the question – Paul Dixon Sep 25 '08 at 22:48
No bet, But I wish I had! The real thing is that I have a 10s compile that I'm running every 2-3 minutes and I'm wondering if I should figure out how to make it "leaner" – BCS Sep 25 '08 at 22:51
BCS, are you on a windows box? can't you use the fastlink possibilities in gcc (and its link editor)? – Rob Wells Sep 25 '08 at 22:53
linux, most of the time is spent in pre-process/code gen. As it stands I'm doing a full clean/re-build because it's easy and wasn't to slow – BCS Sep 25 '08 at 23:03
show 1 more comment
vote up 0 vote down

Shouldn't this be extended to encompass the full dev. cycle?

Code -> compile -> run test -> debug (repeat)

It's not much use having a blazingly fast compile time if it takes two hours to get a slot on a shared test platform! (-:

Edit: Wow. A blast from the past where a linker used to take 12 hours to build the stripped executable! 8-O

link|flag
vote up 3 vote down

Certainly its never short enough not to distract me from working.

link|flag
Hehehe. Look at "distraction" in my question <G> – BCS Sep 25 '08 at 22:47
vote up 1 vote down

Our compile time is roughly 10-15 minutes as well; I normally browse the web/visit blogs/read news/visit S.O. about then. If I know that the compile time is going to be >1 hour, I normally do that around lunch time or end of day.

It's not so bad, and didn't take me long to get used to. It's a nice way to take a break.

link|flag
But which side is the interrupt? :) – BCS Sep 25 '08 at 22:46
:p SO obviously :D – Swati Sep 25 '08 at 22:50
vote up 1 vote down

We have a very large codebase with long build times. I try to keep a variety of tasks on the go so that compile time is not downtime. If you can websurf while compiling, you can code while compiling.

link|flag

Your Answer

Get an OpenID
or

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