This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: reduce compilation times?
Aside from using -j on HT/Mulitcore/Multi-CPU Systems and ccache it
might help to put the sourcecode into a ramdisk for compilation (no
ccache needd then), or at least the build directory, for all the
temporary stuff.
-Sven
Andrew Haley schrieb:
mahmoodn writes:
>
> Is it possible to reduce compilation time with GCC?
Yes. distcc will help you, as will "make -j". ccache is also useful.
Andrew.