vote up 17 vote down star
23

What techniques can be used to speed up C++ compilation times?

This question came up in some comments on this question: http://stackoverflow.com/questions/372862/c-programming-style

And I'm interested to hear what ideas there are.

I've seen this related question, but that doesn't provide many solutions:
http://stackoverflow.com/questions/318398/why-does-c-compilation-take-so-long

flag

35% accept rate
Could you give us some context? Or are you looking for very general answers? – Pyrolistical Dec 16 '08 at 23:27
Very similar to this question: stackoverflow.com/questions/364240/… – Adam Rosenfield Dec 16 '08 at 23:29
General answers. I've got a really big code base written by many people. Ideas on how to attack that would be good. And also, suggestions for keeping compiles quick for newly written code would be interesting. – Scott Langham Dec 16 '08 at 23:30

17 Answers

vote up 2 vote down

I had an idea about using a ramdrive. Turned out that for my projects it doesn't make that much of a difference after all. But then they are pretty small still. Try it! I'd be interested in hearing how much it helped.

link|flag
Huh. Why did someone down-vote this? I'm gonna try it tomorrow. – Scott Langham Dec 16 '08 at 23:41
vote up 1 vote down

If you have a multicore processor, both Visual Studio (2005 and later) as well as gcc support multi processor compiles. Something to enable if you have the hardware, for sure.

link|flag
how do you do it with gcc? – Nathan Fellman Dec 27 '08 at 20:26
@Fellman, See some of the other answers -- use the -j# option. – strager Dec 30 '08 at 4:33
vote up 4 vote down

I will just link to my other answer: How do YOU reduce compile time, and linking time for Visual C++ projects? (native c++) . Another point i want to add, but which causes often problems is to use precompiled headers. But please, only use them for parts which hardly change (like GUI toolkit headers). Otherwise, they will cost you more time than they save you in the end.

Another option is, when you work with GNU make, to turn on -j<N> option:

  -j [N], --jobs[=N]          Allow N jobs at once; infinite jobs with no arg.

I usually have it at 3 since i've got a dual core here. It will then run compilers in parallel for different translation units, provided there are no dependencies between them. Linking cannot be done in parallel, since there is only one linker process linking together all object files. But the linker itself can be threaded, and this is what the GNU gold ELF linker does. It's optimized threaded C++ code which is said to link ELF object files a magnitude faster than the old ld (and was actually included into binutils).

link|flag
Ok, yes. Sorry that question didn't come up when I searched. – Scott Langham Dec 16 '08 at 23:33
you didn't have to be sorry. that was for Visual C++. your question seem to be for any compiler. so that's fine :) – Johannes Schaub - litb Dec 16 '08 at 23:37
vote up 7 vote down

Here are some:

  • use all processor cores by starting a multiple compile jobs (make -j2 is a good example)
  • turn off or lower optimizations (ex. GCC is much faster with -O1 than -O2 or -O3)
  • use precompiled headers
link|flag
1  
FYI, I find it's usually faster to start more processes than cores. For example on a quad core system, I typically use -j8, not -j4. The reason for this is that when one process is blocked on I/O, the other can be compiling. – Mr Fooz Dec 17 '08 at 0:00
vote up 2 vote down
  • Upgrade your computer

    1. Get a quad core (or a dual-quad system)
    2. Get LOTS of RAM.
    3. Use a RAM drive to drastically reduce file I/O delays. (There are companies that make IDE and SATA RAM drives that act like hard drives).
  • Then you have all your other typical suggestions

    1. Use precompiled headers if available.
    2. Reduce the amount of coupling between parts of your project. Changing one header file usually shouldn't require recompiling your entire project.
link|flag
vote up 2 vote down

Use
#pragma once

at the top of header files so if they're included more than once in a translation unit, the text of the header will only get included and parsed once.

link|flag
Although widely supported, #pragma once is non-standard. See en.wikipedia.org/wiki/Pragma_once – ChrisInEdmonton Dec 27 '08 at 14:33
1  
And these days, regular include guards have the same effect. As long as they're at the top of the file, the compiler is fully capable of treating them as #pragma once – jalf Dec 30 '08 at 15:29
vote up 2 vote down

When I came out of college. The first real production worthy c++ code I saw had these arcane #ifndef ... #endif directives in between them were the headers defined. I asked the guy who was writing the code about these overarching things in a very naive fashion and was introduced to world of large scale programming. Coming back to point, using directives to prevent duplicate header definition was the first thing I learned when it came to reducing compiling times.

link|flag
vote up 42 vote down

Language techniques

Pimpl Idiom

Take a look at the pimpl idiom here, and here. Also known as an Opaque Pointer or Handle. Not only does it speed up compilation, it also increases exception safety when combined with a non-throwing swap function. The pimpl idiom lets you reduce the dependencies between headers, and reduces the amount of recompilation that needs to be done.

Forward Declarations

Wherever possible, use forward declarations. If the compiler only needs to know that SomeIdentifier is a struct or a pointer or whatever, don't include the entire definition, forcing the compiler to do more work than it needs to. This can have a cascading effect, making this way slower than they need to be.

The IO streams are particularly known for slowing down builds. If you need them in a header file, try #including <iosfwd> instead of <iostream> and #include the <iostream> header in the implementation file only. The <iosfwd> header holds forward declarations only. Unfortunately the other standard headers don't have a respective declarations header.

Prefer pass-by-reference to pass-by-value in function signatures. This will eliminate the need to #include the respective type definitions in the header file and you will only need to forward-declare the type. Of course, prefer const references to non-const references to avoid obscure bugs, but this is an issue for another question.

Guard Conditions

Use guard conditions to keep header files from being included more than once in a single translation unit.

#pragma once
#ifndef filename_h
#define filename_h

// Header declarations / definitions

#endif

By using both the pragma and the ifndef, you get the portability of the plain macro solution, as well as the compilation speed optimization that some compilers can do in the presence of the pragma once directive.

Reduce interdependancy

The more modular and less interdependant your code design is in general, the less often you will have to recompile everything. You can also end up reducing the amount of work the compiler has to do on any individual block of at the same time, by virtue of the fact that it has less to keep track of.

Compiler options

Precompiled Headers

These are used to compile a common section of included headers once for many translation units. The compiler compiles it once, and saves its internal state. That state can then be loaded quickly to get a head start in compiling another file with that same set of headers.

Be careful that you only include rarely changed stuff in the precompiled headers, or you could end up doing full rebuilds more often than necessary. This is a good place for stl headers and other library include files.

ccache is another utility that takes advantage of caching techniques to speed things up.

Use Parallelism

Many compilers / IDEs support using multiple cores/CPUs to do compilation simultaneously. In GCC, use the -j [N] option. In Visual Studio, there's an option under preferences to allow it to build multiple projects in parallel. You can also use the /MP option for file-level paralellism, instead of just project-level paralellism.

Other parallel utilities:

Use a Lower Optimization Level

The more the compiler tries to optimize, the harder it has to work.

Shared Libraries

Moving your less frequently modified code into libraries can reduce compile time. By using shared libraries (.so or .dll), you can reduce linking time as well.

Get a Faster Computer

More RAM, faster hard drives, more CPUs/cores will all make a difference in compilation speed.

link|flag
1  
Precompiled headers aren't perfect though. A side effect of using them is that you get more files included than necessary (because every compilation unit uses the same precompiled header), which may force full recompiles more often than necessary. Just something to keep in mind. – jalf Dec 17 '08 at 18:44
1  
Also, in VS2008, you can build multiple .cpp files in parallel, not just projects. – jalf Dec 17 '08 at 18:45
1  
I tend to put things like STL headers and library headers (like windows.h) that tend not to change into the precompiled headers. But yes, it's a bad idea to put in anything that will change even semi-frequently. – Eclipse Dec 17 '08 at 19:04
1  
In modern compilers, #ifndef is just as fast as #pragma once (as long as the include guard is at the top of the file). So there's no benefit to #pragma once in terms of compilation-speed – jalf Dec 30 '08 at 15:27
2  
Even if you have just VS 2005, not 2008, you can add /MP switch in compilation options to enable parallel building at the .cpp level. – macbirdie Apr 23 at 18:09
show 4 more comments
vote up 2 vote down

Use forward declarations where you can. If a class declaration only uses a pointer or reference to a type, you can just forward delcare it and include the header for the type in the implementation file.

For example:

// T.h
class Class2; // forward declaration
class T {
public:
    void doSomething(Class2 &c2);
private:
    Class2 *m_Class2Ptr;
};

// T.cpp
#include "Class2.h"
void Class2::doSomething(Class2 &c2) {
    // whatever you want here
}

less includes means far less work for the preprocessor if you do it enough.

link|flag
vote up 6 vote down

I'd recommend these articles:

Granted, they are pretty old - you'll have to re-test everything with the latest versions (or versions available to you), to get realistic results. Either way, it is a good source for ideas.

link|flag
vote up 2 vote down

You could use Unity Builds (Screencast located here).

link|flag
vote up 2 vote down

Just for completeness: a build might be slow because the build system is being stupid as well as because the compiler is taking a long time to do its work.

Read Recursive Make Considered Harmful [PDF] for a discussion of this topic in unix environments.

link|flag
vote up 0 vote down

Where are you spending your time? Are you CPU bound? Memory bound? Disk bound? Can you use more cores? More RAM? Do you need RAID? Do you simply want to improve the efficiency of your current system?

.

Under gcc/g++, have you looked at ccache? It can be helpful if you are doing make_clean_;_make a lot.

link|flag
vote up 2 vote down

Once you have applied all the code tricks above (forward declarations, reducing header inclusion to the minimum in public headers, pushing most details inside the implementation file with PIMPL...) and nothing else can be gained language-wise, consider your build system. If you use linux consider using distcc (distributed compiler) and ccache (cache compiler).

The first one, distcc, executes the preprocessor step locally and then sends the output to the first available compiler in the network. Requires the same compiler and library versions in all the configured nodes in the network.

The latter, ccache, is a compiler cache. It again executes the preprocessor and then check with an internal database (held in a local directory) if that preprocessor file has already been compiled with the same compiler parameters. If it does, it just pops up the binary and output from the first run of the compiler.

Both can be used at the same time, so that if ccache does not have a local copy it can send it trough the net to another node with distcc, or else it can just inject the solution without further processing.

link|flag
vote up 1 vote down

Dynamic linking (.so) can be much much faster than static linking (.a). Especially when you have a slow network drive. This is since you have all of the code in the .a file which needs to be processed and written out. In addition, a much larger executable file needs to be written out to the disk.

link|flag
vote up 1 vote down

More RAM.

Someone talked about ramdrives above, I did this with a 286 and TurboC++ (shows age) and the results were phenomenal. As was the loss of data when the machine crashed.

link|flag
vote up 3 vote down

There's an entire book on this topic, which is titled Large-Scale C++ Software Design (written by Lakos).

The book pre-dates templates, so to the contents of that book add "using templates, too, can make the compiler slower".

link|flag

Your Answer

Get an OpenID
or

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