Enable x86-64 for Linux/i386 if 64bit BFD is selected.
This commit is contained in:
parent
6e95b1c4e0
commit
39a2a3eb35
4 changed files with 14 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-07-31 H.J. Lu <hjl@gnu.org>
|
||||
|
||||
* config.bfd: Add x86-64 vector to Linux/i386 if 64bit BFD is
|
||||
selected.
|
||||
|
||||
2002-07-31 H.J. Lu <hjl@gnu.org>
|
||||
|
||||
* config.bfd: Add n32 vectors to 32bit Linux/mips if 64bit BFD
|
||||
|
|
|
@ -420,6 +420,7 @@ case "${targ}" in
|
|||
i[3456]86-*-linux-gnu*)
|
||||
targ_defvec=bfd_elf32_i386_vec
|
||||
targ_selvecs="i386linux_vec bfd_efi_app_ia32_vec"
|
||||
targ64_selvecs=bfd_elf64_x86_64_vec
|
||||
;;
|
||||
#ifdef BFD64
|
||||
x86_64-*-freebsd*)
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2002-07-31 H.J. Lu <hjl@gnu.org>
|
||||
|
||||
* configure.tgt: Enable x86-64 emulation for Linux/i386 if
|
||||
64bit BFD is selected.
|
||||
|
||||
2002-07-31 H.J. Lu <hjl@gnu.org>
|
||||
|
||||
* configure.tgt: Enable 64bit emulations for 32bit Linux/mips
|
||||
|
|
|
@ -144,6 +144,9 @@ i[3456]86-*-linux*aout*) targ_emul=i386linux
|
|||
i[3456]86-*-linux*oldld) targ_emul=i386linux; targ_extra_emuls=elf_i386 ;;
|
||||
i[3456]86-*-linux-gnu*) targ_emul=elf_i386
|
||||
targ_extra_emuls=i386linux
|
||||
if test x${want64} = xtrue; then
|
||||
targ_extra_emuls="$targ_extra_emuls elf_x86_64"
|
||||
fi
|
||||
tdir_i386linux=${targ_alias}aout
|
||||
;;
|
||||
x86_64-*-linux-gnu*) targ_emul=elf_x86_64
|
||||
|
|
Loading…
Reference in a new issue