diff options
author | Bernd Schmidt <bernds@codesourcery.com> | 2007-03-19 17:31:31 +0000 |
---|---|---|
committer | Bernd Schmidt <bernds@codesourcery.com> | 2007-03-19 17:31:31 +0000 |
commit | 3f2dad243c971fb4d19dbe40aa2fa9beb8e828ad (patch) | |
tree | 842fe77ba277548b9d0ba60c434edd7e632de4bd /ld | |
parent | b0554aa7c03ff1ca3deae3eb722f2504d5d5adf7 (diff) | |
download | gdb-3f2dad243c971fb4d19dbe40aa2fa9beb8e828ad.zip gdb-3f2dad243c971fb4d19dbe40aa2fa9beb8e828ad.tar.gz gdb-3f2dad243c971fb4d19dbe40aa2fa9beb8e828ad.tar.bz2 |
* configure.tgt (bfin-*-elf, bfin-*-uclinux*): Add targ_extra_libpath.
(bfin-*-linux-uclibc*): New target.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/configure.tgt | 14 |
2 files changed, 17 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 3333f61..817e4e8 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2007-03-19 Bernd Schmidt <bernd.schmidt@analog.com> + + * configure.tgt (bfin-*-elf, bfin-*-uclinux*): Add targ_extra_libpath. + (bfin-*-linux-uclibc*): New target. + 2007-03-16 Kai Tietz <Kai.Tietz@onevision.com> * pe-dll.c (make_one): Use pc-relative relocation instead of an diff --git a/ld/configure.tgt b/ld/configure.tgt index bd3b525..9a25a97 100644 --- a/ld/configure.tgt +++ b/ld/configure.tgt @@ -109,8 +109,18 @@ xscale-*-elf) targ_emul=armelf avr-*-*) targ_emul=avr2 targ_extra_emuls="avr1 avr3 avr4 avr5 avr6" ;; -bfin-*-elf) targ_emul=elf32bfin; targ_extra_emuls="elf32bfinfd" ;; -bfin-*-uclinux*) targ_emul=elf32bfin; targ_extra_emuls="elf32bfinfd" ;; +bfin-*-elf) targ_emul=elf32bfin; + targ_extra_emuls="elf32bfinfd" + targ_extra_libpath=$targ_extra_emuls + ;; +bfin-*-uclinux*) targ_emul=elf32bfin; + targ_extra_emuls="elf32bfinfd" + targ_extra_libpath=$targ_extra_emuls + ;; +bfin-*-linux-uclibc*) targ_emul=elf32bfin; + targ_extra_emuls="elf32bfinfd" + targ_extra_libpath=$targ_extra_emuls + ;; cr16c-*-elf*) targ_emul=elf32cr16c ;; cris-*-*aout*) targ_emul=crisaout |