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...