mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
4 lines
121 B
Bash
Executable file
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 "$@"
|