gdb:
* configure.host (xscale*): Don't handle target. * configure.tgt (thumb*-*-* | strongarm*-*-* | xscale-*-*): Don't handle targets. gdb/gdbserver: * README: Don't mention xscale*-*-linux*. * configure.srv (xscale*-*-linux*): Don't handle target. gdb/testsuite: * gdb.base/a2-run.exp (strongarm-*-coff): Don't handle target. * gdb.base/float.exp (xscale*-*-*, strongarm*-*-*): Don't handle targets. * gdb.base/long_long.exp (xscale*-*-*, strongarm*-*-*): Don't handle targets. sim: * configure.tgt (thumb*-*-* | strongarm*-*-* | xscale-*-*): Don't handle targets. * configure: Regenerate. sim/testsuite: * configure: Regenerate. * sim/arm/allinsn.exp (xscale*-*-*): Don't handle target. * sim/arm/misc.exp (thumb*-*-*, xscale*-*-*): Don't handle targets. * sim/arm/iwmmxt/iwmmxt.exp: Test for arm*-*-* instead of xscale*-*-*. * sim/arm/thumb/allthumb.exp (thumb*-*-*): Don't handle target. * sim/arm/xscale/xscale.exp: Test for arm*-*-* instead of xscale*-*-*.
This commit is contained in:
parent
8ffd0459d2
commit
4d393d60c4
@ -1,3 +1,9 @@
|
|||||||
|
2011-05-04 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* configure.host (xscale*): Don't handle target.
|
||||||
|
* configure.tgt (thumb*-*-* | strongarm*-*-* | xscale-*-*): Don't
|
||||||
|
handle targets.
|
||||||
|
|
||||||
2011-05-04 Yao Qi <yao@codesourcery.com>
|
2011-05-04 Yao Qi <yao@codesourcery.com>
|
||||||
|
|
||||||
* gdb_wait.h: remove WAITTYPE and WCOREDUMP.
|
* gdb_wait.h: remove WAITTYPE and WCOREDUMP.
|
||||||
|
@ -51,7 +51,6 @@ sparcv9 | sparc64) gdb_host_cpu=sparc ;;
|
|||||||
s390*) gdb_host_cpu=s390 ;;
|
s390*) gdb_host_cpu=s390 ;;
|
||||||
sh*) gdb_host_cpu=sh ;;
|
sh*) gdb_host_cpu=sh ;;
|
||||||
x86_64*) gdb_host_cpu=i386 ;;
|
x86_64*) gdb_host_cpu=i386 ;;
|
||||||
xscale*) gdb_host_cpu=arm ;;
|
|
||||||
m32r*) gdb_host_cpu=m32r ;;
|
m32r*) gdb_host_cpu=m32r ;;
|
||||||
xtensa*) gdb_host_cpu=xtensa ;;
|
xtensa*) gdb_host_cpu=xtensa ;;
|
||||||
*) gdb_host_cpu=$host_cpu ;;
|
*) gdb_host_cpu=$host_cpu ;;
|
||||||
|
@ -94,7 +94,7 @@ arm*-*-symbianelf*)
|
|||||||
# Target: SymbianOS/arm
|
# Target: SymbianOS/arm
|
||||||
gdb_target_obs="arm-tdep.o solib-target.o arm-symbian-tdep.o"
|
gdb_target_obs="arm-tdep.o solib-target.o arm-symbian-tdep.o"
|
||||||
;;
|
;;
|
||||||
arm*-*-* | thumb*-*-* | strongarm*-*-* | xscale-*-*)
|
arm*-*-*)
|
||||||
# Target: ARM embedded system
|
# Target: ARM embedded system
|
||||||
gdb_target_obs="arm-tdep.o"
|
gdb_target_obs="arm-tdep.o"
|
||||||
gdb_sim=../sim/arm/libsim.a
|
gdb_sim=../sim/arm/libsim.a
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2011-05-04 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* README: Don't mention xscale*-*-linux*.
|
||||||
|
* configure.srv (xscale*-*-linux*): Don't handle target.
|
||||||
|
|
||||||
2011-04-27 Nathan Froyd <froydnj@codesourcery.com>
|
2011-04-27 Nathan Froyd <froydnj@codesourcery.com>
|
||||||
|
|
||||||
* linux-x86-low.c (amd64_emit_const): Call memcpy instead of
|
* linux-x86-low.c (amd64_emit_const): Call memcpy instead of
|
||||||
|
@ -99,7 +99,6 @@ The supported targets as of November 2006 are:
|
|||||||
sh-*-linux*
|
sh-*-linux*
|
||||||
spu*-*-*
|
spu*-*-*
|
||||||
x86_64-*-linux*
|
x86_64-*-linux*
|
||||||
xscale*-*-linux*
|
|
||||||
|
|
||||||
Configuring GDBserver you should specify the same machine for host and
|
Configuring GDBserver you should specify the same machine for host and
|
||||||
target (which are the machine that GDBserver is going to run on. This
|
target (which are the machine that GDBserver is going to run on. This
|
||||||
|
@ -257,11 +257,6 @@ case "${target}" in
|
|||||||
srv_mingw=yes
|
srv_mingw=yes
|
||||||
;;
|
;;
|
||||||
|
|
||||||
xscale*-*-linux*) srv_regobj=reg-arm.o
|
|
||||||
srv_tgtobj="linux-low.o linux-arm-low.o"
|
|
||||||
srv_linux_usrregs=yes
|
|
||||||
srv_linux_thread_db=yes
|
|
||||||
;;
|
|
||||||
xtensa*-*-linux*) srv_regobj=reg-xtensa.o
|
xtensa*-*-linux*) srv_regobj=reg-xtensa.o
|
||||||
srv_tgtobj="linux-low.o linux-xtensa-low.o"
|
srv_tgtobj="linux-low.o linux-xtensa-low.o"
|
||||||
srv_linux_regsets=yes
|
srv_linux_regsets=yes
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
2011-05-04 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* gdb.base/a2-run.exp (strongarm-*-coff): Don't handle target.
|
||||||
|
* gdb.base/float.exp (xscale*-*-*, strongarm*-*-*): Don't handle
|
||||||
|
targets.
|
||||||
|
* gdb.base/long_long.exp (xscale*-*-*, strongarm*-*-*): Don't
|
||||||
|
handle targets.
|
||||||
|
|
||||||
2011-05-04 Jan Kratochvil <jan.kratochvil@redhat.com>
|
2011-05-04 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
* gdb.base/completion.exp (complete help info wat): Rename to ...
|
* gdb.base/completion.exp (complete help info wat): Rename to ...
|
||||||
|
@ -111,7 +111,7 @@ if [istarget "*-*-vxworks*"] then {
|
|||||||
verbose "Timeout is now $timeout seconds" 2
|
verbose "Timeout is now $timeout seconds" 2
|
||||||
gdb_expect -re "$gdb_prompt $" {}
|
gdb_expect -re "$gdb_prompt $" {}
|
||||||
} else {
|
} else {
|
||||||
setup_xfail "mips-idt-*" "arm-*-coff strongarm-*-coff"
|
setup_xfail "mips-idt-*" "arm-*-coff"
|
||||||
gdb_run_cmd 5
|
gdb_run_cmd 5
|
||||||
gdb_expect {
|
gdb_expect {
|
||||||
-re ".*120.*$gdb_prompt $"\
|
-re ".*120.*$gdb_prompt $"\
|
||||||
@ -139,7 +139,7 @@ if [istarget "*-*-vxworks*"] then {
|
|||||||
verbose "Timeout is now $timeout seconds" 2
|
verbose "Timeout is now $timeout seconds" 2
|
||||||
gdb_expect -re "$gdb_prompt $" {}
|
gdb_expect -re "$gdb_prompt $" {}
|
||||||
} else {
|
} else {
|
||||||
setup_xfail "arm-*-coff strongarm-*-coff"
|
setup_xfail "arm-*-coff"
|
||||||
gdb_expect {
|
gdb_expect {
|
||||||
-re ".*120.*$gdb_prompt $"\
|
-re ".*120.*$gdb_prompt $"\
|
||||||
{ pass "run \"$testfile\" again with same args" }
|
{ pass "run \"$testfile\" again with same args" }
|
||||||
@ -216,7 +216,7 @@ if [istarget "*-*-vxworks*"] then {
|
|||||||
verbose "Timeout is now $timeout seconds" 2
|
verbose "Timeout is now $timeout seconds" 2
|
||||||
gdb_expect -re "$gdb_prompt $" {}
|
gdb_expect -re "$gdb_prompt $" {}
|
||||||
} else {
|
} else {
|
||||||
setup_xfail "arm-*-coff strongarm-*-coff"
|
setup_xfail "arm-*-coff"
|
||||||
gdb_expect {
|
gdb_expect {
|
||||||
-re ".*720.*$gdb_prompt $" {
|
-re ".*720.*$gdb_prompt $" {
|
||||||
pass "run \"$testfile\" again after setting args"
|
pass "run \"$testfile\" again after setting args"
|
||||||
|
@ -42,9 +42,7 @@ if ![runto_main] then {
|
|||||||
|
|
||||||
if { [istarget "alpha*-*-*"] } then {
|
if { [istarget "alpha*-*-*"] } then {
|
||||||
gdb_test "info float" "f0.*" "info float"
|
gdb_test "info float" "f0.*" "info float"
|
||||||
} elseif { [istarget "arm*-*-*"] || \
|
} elseif { [istarget "arm*-*-*"] } then {
|
||||||
[istarget "xscale*-*-*"] || \
|
|
||||||
[istarget "strongarm*-*-*"] } then {
|
|
||||||
gdb_test_multiple "info float" "info float" {
|
gdb_test_multiple "info float" "info float" {
|
||||||
-re "Software FPU type.*mask:.*flags:.*$gdb_prompt $" {
|
-re "Software FPU type.*mask:.*flags:.*$gdb_prompt $" {
|
||||||
pass "info float (FPA)"
|
pass "info float (FPA)"
|
||||||
|
@ -165,9 +165,7 @@ if { $sizeof_double == 8 || $sizeof_long_double == 8 } {
|
|||||||
# words swapped in big endian format.
|
# words swapped in big endian format.
|
||||||
# EABI targets default to natural-endian VFP format.
|
# EABI targets default to natural-endian VFP format.
|
||||||
|
|
||||||
if { ([istarget "arm*-*-*"] || \
|
if { ([istarget "arm*-*-*"]) \
|
||||||
[istarget "xscale*-*-*"] || \
|
|
||||||
[istarget "strongarm*-*-*"]) \
|
|
||||||
&& !([istarget "*-*-*eabi"] || \
|
&& !([istarget "*-*-*eabi"] || \
|
||||||
[istarget "*-*-mingw32ce*"] || \
|
[istarget "*-*-mingw32ce*"] || \
|
||||||
[istarget "*-*-openbsd*"] || \
|
[istarget "*-*-openbsd*"] || \
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2011-05-04 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* configure.tgt (thumb*-*-* | strongarm*-*-* | xscale-*-*): Don't
|
||||||
|
handle targets.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2011-03-05 Mike Frysinger <vapier@gentoo.org>
|
2011-03-05 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* MAINTAINERS: Add bfin entry.
|
* MAINTAINERS: Add bfin entry.
|
||||||
|
2
sim/configure
vendored
2
sim/configure
vendored
@ -3623,7 +3623,7 @@ sim_common=yes
|
|||||||
sim_igen=no
|
sim_igen=no
|
||||||
sim_arch=
|
sim_arch=
|
||||||
case "${target}" in
|
case "${target}" in
|
||||||
arm*-*-* | thumb*-*-* | strongarm*-*-* | xscale-*-*)
|
arm*-*-*)
|
||||||
|
|
||||||
sim_arch=arm
|
sim_arch=arm
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ sim_common=yes
|
|||||||
sim_igen=no
|
sim_igen=no
|
||||||
sim_arch=
|
sim_arch=
|
||||||
case "${target}" in
|
case "${target}" in
|
||||||
arm*-*-* | thumb*-*-* | strongarm*-*-* | xscale-*-*)
|
arm*-*-*)
|
||||||
SIM_ARCH(arm)
|
SIM_ARCH(arm)
|
||||||
sim_testsuite=yes
|
sim_testsuite=yes
|
||||||
;;
|
;;
|
||||||
|
@ -1,3 +1,15 @@
|
|||||||
|
2011-05-04 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* configure: Regenerate.
|
||||||
|
* sim/arm/allinsn.exp (xscale*-*-*): Don't handle target.
|
||||||
|
* sim/arm/misc.exp (thumb*-*-*, xscale*-*-*): Don't handle
|
||||||
|
targets.
|
||||||
|
* sim/arm/iwmmxt/iwmmxt.exp: Test for arm*-*-* instead of
|
||||||
|
xscale*-*-*.
|
||||||
|
* sim/arm/thumb/allthumb.exp (thumb*-*-*): Don't handle target.
|
||||||
|
* sim/arm/xscale/xscale.exp: Test for arm*-*-* instead of
|
||||||
|
xscale*-*-*.
|
||||||
|
|
||||||
2010-10-07 Hans-Peter Nilsson <hp@axis.com>
|
2010-10-07 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
* sim/cris/c/seek3.c, sim/cris/c/seek4.c: New tests.
|
* sim/cris/c/seek3.c, sim/cris/c/seek4.c: New tests.
|
||||||
|
5
sim/testsuite/configure
vendored
5
sim/testsuite/configure
vendored
@ -1823,13 +1823,16 @@ sim_common=yes
|
|||||||
sim_igen=no
|
sim_igen=no
|
||||||
sim_arch=
|
sim_arch=
|
||||||
case "${target}" in
|
case "${target}" in
|
||||||
arm*-*-* | thumb*-*-* | strongarm*-*-* | xscale-*-*)
|
arm*-*-*)
|
||||||
sim_arch=arm
|
sim_arch=arm
|
||||||
sim_testsuite=yes
|
sim_testsuite=yes
|
||||||
;;
|
;;
|
||||||
avr*-*-*)
|
avr*-*-*)
|
||||||
sim_arch=avr
|
sim_arch=avr
|
||||||
;;
|
;;
|
||||||
|
bfin-*-*)
|
||||||
|
sim_arch=bfin
|
||||||
|
;;
|
||||||
cr16*-*-*)
|
cr16*-*-*)
|
||||||
sim_arch=cr16
|
sim_arch=cr16
|
||||||
sim_testsuite=yes
|
sim_testsuite=yes
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# ARM simulator testsuite.
|
# ARM simulator testsuite.
|
||||||
|
|
||||||
if { [istarget arm*-*-*] || [istarget xscale*-*-*] } {
|
if { [istarget arm*-*-*] } {
|
||||||
# load support procs (none yet)
|
# load support procs (none yet)
|
||||||
# load_lib cgen.exp
|
# load_lib cgen.exp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Intel(r) Wireless MMX(tm) technology simulator testsuite.
|
# Intel(r) Wireless MMX(tm) technology simulator testsuite.
|
||||||
|
|
||||||
if { [istarget xscale*-*-*] } {
|
if { [istarget arm*-*-*] } {
|
||||||
# load support procs (none yet)
|
# load support procs (none yet)
|
||||||
# load_lib cgen.exp
|
# load_lib cgen.exp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Miscellaneous ARM simulator testcases
|
# Miscellaneous ARM simulator testcases
|
||||||
|
|
||||||
if { [istarget arm*-*-*] || [istarget thumb*-*-*] || [istarget xscale*-*-*] } {
|
if { [istarget arm*-*-*] } {
|
||||||
# load support procs
|
# load support procs
|
||||||
# load_lib cgen.exp
|
# load_lib cgen.exp
|
||||||
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
# ARM simulator testsuite.
|
# ARM simulator testsuite.
|
||||||
|
|
||||||
if { [istarget arm*-*-*]
|
if { [istarget arm*-*-*] } {
|
||||||
|| [istarget thumb*-*-*] } {
|
|
||||||
# load support procs (none yet)
|
# load support procs (none yet)
|
||||||
# load_lib cgen.exp
|
# load_lib cgen.exp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# XSCALE simulator testsuite.
|
# XSCALE simulator testsuite.
|
||||||
|
|
||||||
if { [istarget xscale*-*-*] } {
|
if { [istarget arm*-*-*] } {
|
||||||
# load support procs (none yet)
|
# load support procs (none yet)
|
||||||
# load_lib cgen.exp
|
# load_lib cgen.exp
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user