diff options
author | Joseph Myers <joseph@codesourcery.com> | 2006-10-26 12:52:39 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2006-10-26 12:52:39 +0000 |
commit | fffbd2ef6b560e5e0381170edc06cd4383bc5a16 (patch) | |
tree | f6dd8c9fa49ae4c85cb29d0574859899c5e402a0 /ld/configure.tgt | |
parent | 3ac01eb2651b654a48ba6c4e8fec1fd12a82dc3b (diff) | |
download | gdb-fffbd2ef6b560e5e0381170edc06cd4383bc5a16.zip gdb-fffbd2ef6b560e5e0381170edc06cd4383bc5a16.tar.gz gdb-fffbd2ef6b560e5e0381170edc06cd4383bc5a16.tar.bz2 |
2006-10-26 Joseph S. Myers <joseph@codesourcery.com>
Mark Mitchell <mark@codesourcery.com>
* configure.tgt (arm*linux*): Support both big- and little-endian.
Diffstat (limited to 'ld/configure.tgt')
-rw-r--r-- | ld/configure.tgt | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/ld/configure.tgt b/ld/configure.tgt index c2df86f..82de7f5 100644 --- a/ld/configure.tgt +++ b/ld/configure.tgt @@ -60,11 +60,26 @@ arm-*-elf | arm*-*-eabi*) arm*-*-symbianelf*) targ_emul=armsymbian;; arm-*-kaos*) targ_emul=armelf ;; arm9e-*-elf) targ_emul=armelf ;; -arm*b-*-linux-*eabi) targ_emul=armelfb_linux_eabi ;; -arm*b-*-linux-*) targ_emul=armelfb_linux; targ_extra_emuls=armelfb ;; -arm*-*-linux-*eabi) targ_emul=armelf_linux_eabi ;; -arm*-*-linux-*) targ_emul=armelf_linux; targ_extra_emuls=armelf ;; -arm*-*-uclinux*) targ_emul=armelf_linux; targ_extra_emuls=armelf ;; +arm*b-*-linux-*eabi) targ_emul=armelfb_linux_eabi + targ_extra_emuls=armelf_linux_eabi + targ_extra_libpath=$targ_extra_emuls + ;; +arm*b-*-linux-*) targ_emul=armelfb_linux + targ_extra_emuls="armelfb armelf armelf_linux" + targ_extra_libpath="armelf_linux" + ;; +arm*-*-linux-*eabi) targ_emul=armelf_linux_eabi + targ_extra_emuls=armelfb_linux_eabi + targ_extra_libpath=$targ_extra_emuls + ;; +arm*-*-linux-*) targ_emul=armelf_linux + targ_extra_emuls="armelf armelfb armelfb_linux" + targ_extra_libpath="armelfb_linux" + ;; +arm*-*-uclinux*) targ_emul=armelf_linux + targ_extra_emuls="armelf armelfb armelfb_linux" + targ_extra_libpath="armelfb_linux" + ;; arm-*-vxworks) targ_emul=armelf_vxworks ;; arm*-*-conix*) targ_emul=armelf ;; thumb-*-linux-* | thumb-*-uclinux*) targ_emul=armelf_linux; targ_extra_emuls=armelf ;; |