1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-22 10:27:48 +03:00

temporary

This commit is contained in:
Rui Ueyama 2020-12-19 16:28:38 +09:00
parent 373a1ff5a3
commit 7aef29a9a5
2 changed files with 1 additions and 8 deletions

View File

@ -899,14 +899,6 @@ int main(int argc, char **argv) {
out::dsos = vec;
}
// Parse mergeable string sections
{
ScopedTimer t("merge");
tbb::parallel_for_each(out::objs, [](ObjectFile *file) {
file->initialize_mergeable_sections();
});
}
Timer t_total("total");
Timer t_before_copy("before_copy");

View File

@ -314,6 +314,7 @@ void ObjectFile::parse() {
initialize_sections();
initialize_symbols();
initialize_mergeable_sections();
}
// Symbols with higher priorities overwrites symbols with lower priorities.