mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 21:33:08 +00:00
12 lines
154 B
Plaintext
12 lines
154 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
call_to=@@DEFAULT_LD@@
|
||
|
|
||
|
case "${CTNG_LD_IS}" in
|
||
|
bfd) call_to=bfd;;
|
||
|
gold) call_to=gold;;
|
||
|
esac
|
||
|
|
||
|
exec "${0}.${call_to}" "$@"
|
||
|
exit $?
|