mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 17:18:24 +08:00
2002-01-20 Jiri Smid <smid@suse.cz>
* configure.host, configure.tgt: Support x86-64. * NEWS: Note new target x86-64.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2002-01-20 Jiri Smid <smid@suse.cz>
|
||||||
|
|
||||||
|
* configure.host, configure.tgt: Support x86-64.
|
||||||
|
* NEWS: Note new target x86-64.
|
||||||
|
|
||||||
2002-01-19 Andrew Cagney <ac131313@redhat.com>
|
2002-01-19 Andrew Cagney <ac131313@redhat.com>
|
||||||
|
|
||||||
* utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
|
* utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
|
||||||
@ -354,7 +359,7 @@
|
|||||||
builtin_type_v8hi. Create the vec128 register builtin type
|
builtin_type_v8hi. Create the vec128 register builtin type
|
||||||
structure.
|
structure.
|
||||||
(build_builtin_type_vec128): New function.
|
(build_builtin_type_vec128): New function.
|
||||||
(_initialize_gdbtypes): Register builtin_type_v16qi and
|
(_initialize_gdbtypes): Register builtin_type_v16qi and
|
||||||
builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
|
builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
|
||||||
* rs6000-tdep.c (rs6000_register_virtual_type): Change type of
|
* rs6000-tdep.c (rs6000_register_virtual_type): Change type of
|
||||||
AltiVec register to new builtin type.
|
AltiVec register to new builtin type.
|
||||||
|
1
gdb/NEWS
1
gdb/NEWS
@ -23,6 +23,7 @@ is found, will then attempt to open it as a corefile.
|
|||||||
* New native configurations
|
* New native configurations
|
||||||
|
|
||||||
x86 OpenBSD i[3456]86-*-openbsd*
|
x86 OpenBSD i[3456]86-*-openbsd*
|
||||||
|
AMD x86-64 running Linux x86_64-*-linux-*
|
||||||
|
|
||||||
* New targets
|
* New targets
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@ mips*) gdb_host_cpu=mips ;;
|
|||||||
powerpc*) gdb_host_cpu=powerpc ;;
|
powerpc*) gdb_host_cpu=powerpc ;;
|
||||||
sparc64) gdb_host_cpu=sparc ;;
|
sparc64) gdb_host_cpu=sparc ;;
|
||||||
s390*) gdb_host_cpu=s390 ;;
|
s390*) gdb_host_cpu=s390 ;;
|
||||||
|
x86_64*) gdb_host_cpu=i386 ;;
|
||||||
*) gdb_host_cpu=$host_cpu ;;
|
*) gdb_host_cpu=$host_cpu ;;
|
||||||
|
|
||||||
esac
|
esac
|
||||||
@ -153,4 +154,6 @@ vax-*-bsd*) gdb_host=vaxbsd ;;
|
|||||||
vax-*-ultrix2*) gdb_host=vaxult2 ;;
|
vax-*-ultrix2*) gdb_host=vaxult2 ;;
|
||||||
vax-*-ultrix*) gdb_host=vaxult ;;
|
vax-*-ultrix*) gdb_host=vaxult ;;
|
||||||
|
|
||||||
|
x86_64-*-linux*) gdb_host=x86-64linux ;;
|
||||||
|
|
||||||
esac
|
esac
|
||||||
|
@ -27,6 +27,7 @@ s390*) gdb_target_cpu=s390 ;;
|
|||||||
strongarm*) gdb_target_cpu=arm ;;
|
strongarm*) gdb_target_cpu=arm ;;
|
||||||
xscale*) gdb_target_cpu=arm ;;
|
xscale*) gdb_target_cpu=arm ;;
|
||||||
v850*) gdb_target_cpu=v850 ;;
|
v850*) gdb_target_cpu=v850 ;;
|
||||||
|
x86_64*) gdb_target_cpu=i386 ;;
|
||||||
*) gdb_target_cpu=$target_cpu ;;
|
*) gdb_target_cpu=$target_cpu ;;
|
||||||
|
|
||||||
esac
|
esac
|
||||||
@ -294,6 +295,10 @@ v850*-*-*) gdb_target=v850
|
|||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
x86_64-*-linux*) gdb_target=x86-64linux
|
||||||
|
configdirs="${configdirs} gdbserver" ;;
|
||||||
|
|
||||||
|
|
||||||
z8k-*-coff*) gdb_target=z8k ;;
|
z8k-*-coff*) gdb_target=z8k ;;
|
||||||
|
|
||||||
esac
|
esac
|
||||||
@ -305,5 +310,6 @@ case "${gdb_target}" in
|
|||||||
d10v) gdb_multi_arch=yes ;;
|
d10v) gdb_multi_arch=yes ;;
|
||||||
m68hc11) gdb_multi_arch=yes ;;
|
m68hc11) gdb_multi_arch=yes ;;
|
||||||
mn10300) gdb_multi_arch=yes ;;
|
mn10300) gdb_multi_arch=yes ;;
|
||||||
|
x86-64linux) gdb_multi_arch=yes ;;
|
||||||
xstormy16) gdb_multi_arch=yes ;;
|
xstormy16) gdb_multi_arch=yes ;;
|
||||||
esac
|
esac
|
||||||
|
Reference in New Issue
Block a user