From IRC today:
“19:43 <@dillon> I’m bored at the moment. lemme try to speed up module builds“
Buildkernel, depending on your processor count, now may have tripled in speed.
From IRC today:
“19:43 <@dillon> I’m bored at the moment. lemme try to speed up module builds“
Buildkernel, depending on your processor count, now may have tripled in speed.
Comments are closed.
Is the “j”-option necessary for building? For example on a 4core: make -j 4 buildkernel ?
Because this is recommended on: https://www.dragonflybsd.org/docs/newhandbook/Upgrading/
Or is a simple “make” sufficient to use all cores?
make itself will run one make job at a time unless you tell it to run more. If there’s only one job running, it can only run on one core.
Quick, someone bore Matt more!
The “j” option is necessary for building if:
1) you have more than 1 core
2) you want to use more than 1 core
Like Justin said, if you omit it, it will use only one core no matter how many you have.
You pretty much always want to use -j, I would think. There’s not a lot of single-core x86 computers left.