|
|
|
|
|
by menaerus
957 days ago
|
|
lld will launch as many threads by default unless it is explicitly told not to. This is with and without ThinLTO switch. From https://clang.llvm.org/docs/ThinLTO.html#id10 By default, the ThinLTO link step will launch as many threads in parallel as there are cores. If the number of cores can’t be computed for the architecture, then it will launch std::thread::hardware_concurrency number of threads in parallel. For machines with hyper-threading, this is the total number of virtual cores.
But maybe I misunderstood you. |
|