|
|
|
|
|
by dale_glass
1453 days ago
|
|
Okay, but what specifically is faster? Make is rarely a big bottleneck, except in very pathologically written projects, and when doing incremental builds. I think the main problem with big make setups is recursive make, which prevents it from having a global view on the project, and forces the main make to execute many sub-makes recursively, all of which has overhead. |
|