GNU make は -jN 引数を使用して並列タスクを処理できます。ビルドに使用されているコンピューターのハードウェア スレッド数の 1 から 2 倍の数のタスク N を使用するのが一般的です。
たとえば、デュアル E5520 マシン (2 CPU、CPU ごとに 4 コア、コアごとに 2 スレッド) では、make -j16 と make -j32 の間のコマンドで最速のビルドが作成されます。
現在、ビルドサーバーについてあまり知りませんが、実行するとcat /proc/cpuinfo
4つのプロセッサがあり、各情報は次のようになっています
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 37
model name : Intel(R) Core(TM) i3 CPU 530 @ 2.93GHz
stepping : 2
cpu MHz : 2933.000
cache size : 4096 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt lahf_lm arat tpr_shadow vnmi flexpriority ept vpid
bogomips : 5851.87
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
質問:
1>ここで、ビルドの N を計算するにはどうすればよいですか?
2>自分のシステムが最大 8 つのスレッドをサポートできるとしたらどうしmake -j32
ますか?
3>make だけを使用すると、コンパイルのために 1 つのスレッドのみが実行されますか?