On Tue, 26 Jul 2016 06:38:43 GMT, Rory McGuire wrote:

Not sure when the options was added but you can now use run gcc with "-fuse-ld=gold"

For C:
gcc -fuse-ld=gold test.c -o test

For D:
dmd test.d -L-fuse-ld=gold
this works on linux because dmd really just uses gcc as the linker.

Does that really work? Because usually DMD translates the -L flag to -Xlinker which GCC passes straight to the linker.