mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
10 lines
205 B
Bash
Executable File
10 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -x /usr/bin/xcrun ]] ; then
|
|
exec /usr/bin/xcrun ld -ld_classic "${@}"
|
|
elif [[ -x /usr/bin/ld ]] ; then
|
|
exec /usr/bin/ld -ld_classic "${@}"
|
|
else
|
|
exec ld -ld_classic "${@}"
|
|
fi
|