servo/etc/rustc-with-gold
Simon Sapin fb7a53c6cf Use the gold linker when available.
This shaves 50 seconds off the build time on my machine.
2015-08-15 18:09:18 +02:00

4 lines
121 B
Bash
Executable file

#!/bin/sh
EXTRA_ARGS=""
which ld.gold > /dev/null 2>&1 && EXTRA_ARGS="-C link-args=-fuse-ld=gold"
rustc $EXTRA_ARGS "$@"