diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-12-09 04:01:06 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-12-09 04:01:06 +0000 |
commit | c02ed6a8a3e3c8bd68f7212c4a5e03f781d4f122 (patch) | |
tree | 3a1c99bc2f18fe94cce452ca6fc1ae84375afb78 /bfd | |
parent | 09e4fde23070f6bb86237a4170bec3ea4a486561 (diff) | |
download | gdb-c02ed6a8a3e3c8bd68f7212c4a5e03f781d4f122.zip gdb-c02ed6a8a3e3c8bd68f7212c4a5e03f781d4f122.tar.gz gdb-c02ed6a8a3e3c8bd68f7212c4a5e03f781d4f122.tar.bz2 |
For bfd, add vr5400 and vr5000 mips machine variants to list of machines.
For sim/mips, enable multi-sim support when mips64vr5400-elf is target.
For sim/igen, allow specification of a default machine (will need
more work later).
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/.Sanitize | 28 | ||||
-rw-r--r-- | bfd/ChangeLog | 13 |
2 files changed, 41 insertions, 0 deletions
diff --git a/bfd/.Sanitize b/bfd/.Sanitize index c6f6745..288fc0b 100644 --- a/bfd/.Sanitize +++ b/bfd/.Sanitize @@ -457,6 +457,34 @@ else done fi +vr5400_files="ChangeLog archures.c bfd-in2.h bfd-in.h cpu-mips.c" +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 [ -n "${verbose}" ] ; then + echo Keeping vr5400 stuff in $i + fi + fi + done +else + for i in $vr5400_files ; do + if test ! -d $i && (grep sanitize-vr5400 $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Removing traces of \"vr5400\" from $i... + fi + cp $i new + sed '/start\-sanitize\-vr5400/,/end-\sanitize\-vr5400/d' < $i > new + if [ -n "${safe}" -a ! -f .Recover/$i ] ; then + if [ -n "${verbose}" ] ; then + echo Caching $i in .Recover... + fi + mv $i .Recover + fi + mv new $i + fi + done +fi + for i in * ; do if test ! -d $i && (grep sanitize $i > /dev/null) ; then echo '***' Some mentions of Sanitize are still left in $i! 1>&2 diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 6365a57..773af7e 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,16 @@ +Tue Dec 9 11:37:53 1997 Andrew Cagney <cagney@b1.cygnus.com> + + * archures.c (bfd_mach_mips*): Define. + (start-sanitize-vr5400): + (vr5400, bfd_mach_vr5000): Define. + (end-sanitize-vr5400): + (bfd_default_scan): For 3000 and 4000 replace magic constant with + macro. + + * cpu-mips.c (N): Define. + (bfd_mips_arch, arch_info_struct): Re-write using macro N, replace + numbers with bfd_mach_mips* macros. + Fri Dec 5 11:13:46 1997 Nick Clifton <nickc@cygnus.com> * elf32-v850.c (v850_elf_reloc, v850_elf_store_addend_in_insn, |