Linux OR BSD: How to speed up compile time with GNU make
Q. How do I speed compile time for large application such as open office or kernel?
A. First, you cannot just increase the speed. Sure there are some hacks out. In order to work following instruction you need to have a powerful system or SMP system with lods of RAM.
You can improve performance by modifying Makefile for parallel build. Use GNU make utility to maintain groups of programs. You need to pass -j option to make command. It specifies the number of jobs (commands) to run simultaneously. If there is more than one -j option, the last one is effective. If the -j option is given without an argument, make will not limit the number of jobs that can run simultaneously.
For example:
$ make -j5
Please note that lots of software are not designed to build as a parallel build. Read man page of make for more information.
Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
Related Other Helpful FAQs:
- Squid deny users accessing a website
- Apache Web Server Cache Frequently Used Files To Improve Performance
- Enable Linux dual core CPU support for my Server
- Linux set date and time from command prompt
- Upgrade Linux kernel howto
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!


Recent Comments
Today ~ 32 Comments
Yesterday ~ 1 Comment
Yesterday ~ 3 Comments
Yesterday ~ 2 Comments
Yesterday ~ 3 Comments