8 Minutes ???? Thats really a lot.
How do you build typically ? Do you use the script build-mg.sh in mk/linux ?
This sets the number of cores correctly and by this the build should not take so long :-/
If you run cmake manually followed by a make call, you should add the -j option to the make call, setting the number of cores which will be used.
So with 4 cores you do:
make -j4
If you have an Intel CPU with hyperthreading, you can try to run with -j8, but I don't know how much faster it will be.