Since the commit hashes are altered, checking old pull requests for commits to cherry pick will not work. However the new start and end hashes can be found with: 1git rev-parse --short :/"header or other commit message text" Followed by the standard: 1git cherry-pick $SHA_START^..$SHA_END| Rohit Goswami
mold is an easy win, with the following native file: 1[binaries] 2c_ld = 'mold' 3cpp_ld = 'mold' 4fortran_ld = 'mold' 5[built-in options] 6# mold 1.11.0 or later needed due to https://github.com/rui314/mold/issues/1017 7# --no-as-needed temporarily necessary due to the seeming return of https://github.com/rui314/mold/issues/1017 8c_link_args = ['-fuse-ld=mold', '-Wl,--no-as-needed'] 9cpp_link_args = ['-fuse-ld=mold', '-Wl,--no-as-needed'] 10fortran_link_args = ['-fuse-ld=mold', '-Wl,--no-as-n...| Rohit Goswami