forked from Imagelibrary/binutils-gdb
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:
@@ -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>
|
||||
|
||||
* MAINTAINERS: Add bfin entry.
|
||||
|
||||
2
sim/configure
vendored
2
sim/configure
vendored
@@ -3623,7 +3623,7 @@ sim_common=yes
|
||||
sim_igen=no
|
||||
sim_arch=
|
||||
case "${target}" in
|
||||
arm*-*-* | thumb*-*-* | strongarm*-*-* | xscale-*-*)
|
||||
arm*-*-*)
|
||||
|
||||
sim_arch=arm
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ sim_common=yes
|
||||
sim_igen=no
|
||||
sim_arch=
|
||||
case "${target}" in
|
||||
arm*-*-* | thumb*-*-* | strongarm*-*-* | xscale-*-*)
|
||||
arm*-*-*)
|
||||
SIM_ARCH(arm)
|
||||
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>
|
||||
|
||||
* 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_arch=
|
||||
case "${target}" in
|
||||
arm*-*-* | thumb*-*-* | strongarm*-*-* | xscale-*-*)
|
||||
arm*-*-*)
|
||||
sim_arch=arm
|
||||
sim_testsuite=yes
|
||||
;;
|
||||
avr*-*-*)
|
||||
sim_arch=avr
|
||||
;;
|
||||
bfin-*-*)
|
||||
sim_arch=bfin
|
||||
;;
|
||||
cr16*-*-*)
|
||||
sim_arch=cr16
|
||||
sim_testsuite=yes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# ARM simulator testsuite.
|
||||
|
||||
if { [istarget arm*-*-*] || [istarget xscale*-*-*] } {
|
||||
if { [istarget arm*-*-*] } {
|
||||
# load support procs (none yet)
|
||||
# load_lib cgen.exp
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Intel(r) Wireless MMX(tm) technology simulator testsuite.
|
||||
|
||||
if { [istarget xscale*-*-*] } {
|
||||
if { [istarget arm*-*-*] } {
|
||||
# load support procs (none yet)
|
||||
# load_lib cgen.exp
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Miscellaneous ARM simulator testcases
|
||||
|
||||
if { [istarget arm*-*-*] || [istarget thumb*-*-*] || [istarget xscale*-*-*] } {
|
||||
if { [istarget arm*-*-*] } {
|
||||
# load support procs
|
||||
# load_lib cgen.exp
|
||||
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
# ARM simulator testsuite.
|
||||
|
||||
if { [istarget arm*-*-*]
|
||||
|| [istarget thumb*-*-*] } {
|
||||
if { [istarget arm*-*-*] } {
|
||||
# load support procs (none yet)
|
||||
# load_lib cgen.exp
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# XSCALE simulator testsuite.
|
||||
|
||||
if { [istarget xscale*-*-*] } {
|
||||
if { [istarget arm*-*-*] } {
|
||||
# load support procs (none yet)
|
||||
# load_lib cgen.exp
|
||||
|
||||
|
||||
Reference in New Issue
Block a user