1
1
It takes so long to compile Bitcoin Core on my machine... I can't imagine trying to fix bugs like a missed semicolon and having to wait an hour for the compiler to finish before testing. Is this really what devs have to deal with? Or is there a way to just compile smaller units of the code and run it quickly over and over again until all the semi colons are fixed?
1How long does it take to compile the second time you try? – Greg Hewgill – 2016-05-24T23:31:11.363
2If you modify a file and rerun
make, it only compiles the section you touched. Also, you can run it asmake -j 2to get it to run on two cores at once. – Nick ODell – 2016-05-25T00:34:46.097