Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

If I restart compilation will it pick up where it left off?

I'm building GHC from source but forgot to add the -j3 option to tell it to use both cores on my machine.

If I Ctrl-c and restart the process, will it continue building from the current stage in the process, or will it start all over again?

like image 654
Alex Shroyer Avatar asked Aug 13 '14 13:08

Alex Shroyer


1 Answers

Yes. Files that have been compiled will not be compiled again.

(sources: Tom's comment and personal experience)

like image 69
Alex Shroyer Avatar answered Nov 16 '22 03:11

Alex Shroyer