diff options
author | Ken Raeburn <raeburn@cygnus> | 1998-08-12 10:50:35 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1998-08-12 10:50:35 +0000 |
commit | 3d759c53c925566cd94b579aa4751191d40ae4ab (patch) | |
tree | fac779eb7d661f7de76ede0918dec61e4fbde326 /sim | |
parent | 485c39eb7bbc101b57686abb2e0378ef3f641f90 (diff) | |
download | gdb-3d759c53c925566cd94b579aa4751191d40ae4ab.zip gdb-3d759c53c925566cd94b579aa4751191d40ae4ab.tar.gz gdb-3d759c53c925566cd94b579aa4751191d40ae4ab.tar.bz2 |
sanitize-vr5400 -> sanitize-cygnus, for 98r2
Diffstat (limited to 'sim')
-rw-r--r-- | sim/mips/.Sanitize | 26 | ||||
-rw-r--r-- | sim/mips/configure.in | 8 |
2 files changed, 17 insertions, 17 deletions
diff --git a/sim/mips/.Sanitize b/sim/mips/.Sanitize index 47c9d37..38ff119 100644 --- a/sim/mips/.Sanitize +++ b/sim/mips/.Sanitize @@ -46,11 +46,11 @@ else lose_these_too="${sky_files} ${lose_these_too}" fi -vr5400_files="mdmx.igen" -if ( echo $* | grep keep\-vr5400 > /dev/null ) ; then - keep_these_too="${vr5400_files} ${keep_these_too}" +cygnus_files="mdmx.igen" +if ( echo $* | grep keep\-cygnus > /dev/null ) ; then + keep_these_too="${cygnus_files} ${keep_these_too}" else - lose_these_too="${vr5400_files} ${lose_these_too}" + lose_these_too="${cygnus_files} ${lose_these_too}" fi # All files listed between the "Things-to-keep:" line and the @@ -206,24 +206,24 @@ else fi -vr5400_files="ChangeLog configure configure.in sim-main.h interp.c gencode.c mips.igen mips.dc mdmx.igen vr.igen" +cygnus_files="ChangeLog configure configure.in sim-main.h interp.c gencode.c mips.igen mips.dc mdmx.igen vr.igen" -if ( echo $* | grep keep\-vr5400 > /dev/null ) ; then - for i in $vr5400_files ; do - if test ! -d $i && (grep sanitize-vr5400 $i > /dev/null) ; then +if ( echo $* | grep keep\-cygnus > /dev/null ) ; then + for i in $cygnus_files ; do + if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then if [ -n "${verbose}" ] ; then - echo Keeping vr5400 stuff in $i + echo Keeping cygnus stuff in $i fi fi done else for i in * ; do - if test ! -d $i && (grep sanitize-vr5400 $i > /dev/null) ; then + if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then if [ -n "${verbose}" ] ; then - echo Removing traces of \"vr5400\" from $i... + echo Removing traces of \"cygnus\" from $i... fi cp $i new - sed '/start\-sanitize\-vr5400/,/end-\sanitize\-vr5400/d' < $i > new + sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/d' < $i > new if [ -n "${safe}" -a ! -f .Recover/$i ] ; then if [ -n "${verbose}" ] ; then echo Caching $i in .Recover... @@ -267,7 +267,7 @@ fi vrXXXX_files="vr.igen" -if ( echo $* | grep keep\-vr > /dev/null ) ; then +if ( echo $* | grep keep\-vr > /dev/null ) || ( echo $* | grep keep\-cygnus > /dev/null ) ; then for i in $vrXXXX_files ; do if test ! -d $i && (grep sanitize-vrXXXX $i > /dev/null) ; then if [ -n "${verbose}" ] ; then diff --git a/sim/mips/configure.in b/sim/mips/configure.in index 9758326..163db4a 100644 --- a/sim/mips/configure.in +++ b/sim/mips/configure.in @@ -167,18 +167,18 @@ case "${target}" in sim_igen_machine="-M mipsIV,vr4320 -G gen-multi-sim=mipsIV" # end-sanitize-vr4320 ;; -# start-sanitize-vr5400 +# start-sanitize-cygnus mips64vr54*-*-*) sim_default_gen=IGEN sim_use_gen=IGEN sim_igen_machine="-M vr5000,vr5400 -G gen-multi-sim=vr5400" ;; -# end-sanitize-vr5400 +# end-sanitize-cygnus mips64vr5*-*-*) sim_default_gen=IGEN sim_use_gen=IGEN sim_igen_machine="-M vr5000" -# start-sanitize-vr5400 +# start-sanitize-cygnus sim_igen_machine="-M vr5000,vr5400 -G gen-multi-sim=vr5000" -# end-sanitize-vr5400 +# end-sanitize-cygnus ;; mips64vr4100-*-*) echo "NOTE: mips64vr4100 still uses gencode" sim_default_gen=M16 |