vote up 3 vote down star

Closed as an exact duplicate of this question.

When I write C++ code I compile frequently so that I can see that I'm not making a mistake or what errors to fix next.

However, that practice is unfortunately highly inefficient, especially with bigger projects that take a long time to compile. Even if compilation takes only 30 seconds or a minute it adds up to be a big waste of time over the day.

How do you deal with longish compile times? Do you just not compile often? During compile times, what works best for you as a time filler? Look at the code some more? But that can disturb the compiling process. Quickly switch to some other coding project you're working on? Read an article?

In terms of cognition it's quite an interesting question: How do you deal with frequent forced one-minute interruptions without losing your focus?

flag
Same question here with the same comic strip: stackoverflow.com/questions/55922/… – splattne Jan 24 at 15:42
Thanks, splattne. I should have checked the Related sidebar before even posting an answer. – Bill the Lizard Jan 24 at 15:56

closed as exact duplicate by splattne, Paul Tomblin, ctacke, Bill the Lizard Jan 24 at 15:51

13 Answers

vote up 9 vote down

alt text

XKCD

link|flag
XKCD always applies to almost every question. They are the Jon Skeet of cartoons. – daub815 Jan 24 at 15:42
Looks familiar to me: stackoverflow.com/questions/55922/… ;-) – splattne Jan 24 at 15:45
First thing that came to my mind! – phsr Jan 24 at 15:46
@splattne: Crap! Now I have to vote to close. :( – Bill the Lizard Jan 24 at 15:51
Helpful joke, right? – hmcclungiii Jan 24 at 19:05
vote up 5 vote down
  1. Work on other subprojects
  2. Take a break
  3. alt text
link|flag
vote up 4 vote down

Dude, chill out and surf the Internet

link|flag
vote up 4 vote down

I'm compiling right now; so what does that tell you ;)

I usually read the news, programming blogs and visit SO. Sometimes I go take a piss and grab a bite to eat. Depends on my mood really.

link|flag
vote up 4 vote down

Sword fight!

http://www.nniling.us/303/

But seriously, have you gone through all lengths to ensure your compile time is as fast as it can be?

  1. Have you upgraded you RAM? I recently moved to 4 GB of RAM and it cut down 30% of compile time.
  2. Can you build different parts of your codebase separately? I currently have a setup where if I only make an edit to the model layer, that's all I have to compile. This approach can increase your efficiency significantly.

Work on reducing your compile time before you decide how to spend your extra cycles.

link|flag
vote up 3 vote down

Answer questions on StackOverflow ;)

link|flag
vote up 2 vote down

I'll sometimes check email, RSS, StackOverflow, etc. when I have down time such as waiting for a compile. But I wonder whether it might actually be more productive to sit there and do nothing. Checking email keeps me busy, but it has the potential to derail my concentration. When I'm working on something really hard, I'll just sit there.

link|flag
vote up 1 vote down

Partition your code so that most compiles are very fast (ideally only 1 or 2 seconds). Only on rare occasions should you have to wait on your compiler.

Long compiles are not simply a waste of time. They also break your concentration and act as a barrier that may discourage experimentation and testing.

link|flag
What I meant to convey here was that during slow builds, I inevitably start thinking about how to fix my company's build system (even though it is just a pipe dream for me). I really can't comprehend why people think slow builds are acceptable. There must be a better way -- if you apply a little creativity. – nobar Nov 7 at 0:28
vote up 1 vote down

Fix my build process.

link|flag
vote up 0 vote down

I make a small windows with a terminal (windows on top) and surf the internet while checking for compile errors or warnings, that way I know when to stop surfing. I also listen to some 8bit tracks in last.fm

If the project compiling is small I just wait.

note: I'm the only one with a slow machine here?

link|flag
vote up 0 vote down

I would use the time for ordering a faster machine.

link|flag
vote up 0 vote down

I always spend that time looking for duplicate questions on Stackoverflow:

How to keep concentrated and focused while waiting for your compiler?

link|flag
This theme is worth varied exploration. [My build started about an hour ago] – nobar Nov 7 at 0:18
vote up 0 vote down

Spellcheck my comments and add documentation

link|flag

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