1
1
mirror of https://github.com/rui314/mold.git synced 2024-12-26 18:02:30 +03:00

temporary

This commit is contained in:
Rui Ueyama 2020-11-06 09:12:49 +09:00
parent bed207a4ec
commit 5930c2b34d

10
main.cc
View File

@ -858,11 +858,10 @@ int main(int argc, char **argv) {
}
// Fill .symtab and .strtab
tbb::task_group tg_symtab;
tg_symtab.run([&]() {
{
MyTimer t("write_symtab");
write_symtab(buf, files);
});
}
// Copy input sections to the output file
{
@ -875,11 +874,6 @@ int main(int argc, char **argv) {
for_each(output_chunks, [&](OutputChunk *chunk) { chunk->relocate(buf); });
}
{
MyTimer t("symtab_wait");
tg_symtab.wait();
}
out::shdr->copy_to(buf);
{