scripts/build/binutils/binutils-ld.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Sun Mar 04 17:31:23 2012 +0100 (2012-03-04)
changeset 2906 af58fa8b5caa
permissions -rw-r--r--
binutils/binutils: rename function that build target libraries

Prepare for the incoming build/host/target frontends.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 #!/bin/sh
     2 
     3 call_to=@@DEFAULT_LD@@
     4 
     5 case "${CTNG_LD_IS}" in
     6     bfd)    call_to=bfd;;
     7     gold)   call_to=gold;;
     8 esac
     9 
    10 exec "${0}.${call_to}" "$@"
    11 exit $?