Rui Ueyama

Results 705 comments of Rui Ueyama

`--section-order` was undocumented because there's no user. I'll add a description of that command line flag to our man page.

We could support `-w`, but it looks like the option behaves differently with lld than with BFD. lld stop printing out only warning message with that option, while BFD suppresses...

I tried to biuld Ladybird with `BUILD_PRESET=Debug ./Meta/ladybird.sh build`, but it didn't seem to take too much time. What is the executable file name that takes a few minutes to...

It took ~1.8s for me to build that shared library. Given that the .so is ~2.8 GiB, that's not particularly slow to build. Can you rebuild the shared library with...

Thanks for sharing the file! Actually the .so file can be built in less than 2 seconds on my machine as you can see below. ``` $ /build/mold @response.txt -perf...

How much memory does your machine have, and how many cores? I suspect that the linker is causing thrashing when the workload exceeds a certain threshold, as it isn't slow...

16 cores are decent, but one gigabyte per core is too small. I believe each thread is competing with the others for memory, causing thrashing. You may want to add...

I think you're right that changing the number of threads doesn't affect the total memory consumption of the process. However, I believe it does impact the process's working set --...