aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin Romig-Koch <gavin@redhat.com>1997-10-29 23:01:41 +0000
committerGavin Romig-Koch <gavin@redhat.com>1997-10-29 23:01:41 +0000
commitd649db65ade654881cd7575b3382cf08ec8cae83 (patch)
tree5558ed3e5516149e9c6e9f54cb93afa48fd216fa
parentd020618aebb358a4fe00b92dbd425e911479def3 (diff)
downloadgdb-d649db65ade654881cd7575b3382cf08ec8cae83.zip
gdb-d649db65ade654881cd7575b3382cf08ec8cae83.tar.gz
gdb-d649db65ade654881cd7575b3382cf08ec8cae83.tar.bz2
* config.sub: Add tx49 configury.
-rw-r--r--.Sanitize29
-rw-r--r--ChangeLog6
-rwxr-xr-xconfig.sub14
3 files changed, 49 insertions, 0 deletions
diff --git a/.Sanitize b/.Sanitize
index 4f3d4ee..cd20f4b 100644
--- a/.Sanitize
+++ b/.Sanitize
@@ -338,6 +338,35 @@ else
done
fi
+tx49_files="ChangeLog config.sub"
+
+if ( echo $* | grep keep\-tx49 > /dev/null ) ; then
+ for i in $tx49_files ; do
+ if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping tx49 stuff in $i
+ fi
+ fi
+ done
+else
+ for i in * ; do
+ if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"tx49\" from $i...
+ fi
+ cp $i new
+ sed '/start\-sanitize\-tx49/,/end-\sanitize\-tx49/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
+
tic80_files="ChangeLog config.sub configure.in"
if ( echo $* | grep keep\-tic80 > /dev/null ) ; then
diff --git a/ChangeLog b/ChangeLog
index dd62b1d..7de695b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+start-sanitize-tx49
+Wed Oct 29 16:52:43 1997 Gavin Koch <gavin@cygnus.com>
+
+ * config.sub: Add tx49 configury.
+
+end-sanitize-tx49
Mon Oct 27 13:17:24 1997 Stan Shebs <shebs@andros.cygnus.com>
* configure.in: Remove a "second pass" of tweaking noconfigdirs,
diff --git a/config.sub b/config.sub
index 88c7a1b..ab7ef8d 100755
--- a/config.sub
+++ b/config.sub
@@ -76,6 +76,11 @@ case $1 in
set mipstx19-unknown-elf
;;
# end-sanitize-tx19
+# start-sanitize-tx49
+ mips-tx49-elf)
+ set mips64tx49-unknown-elf
+ ;;
+# end-sanitize-tx49
*)
;;
esac
@@ -189,6 +194,11 @@ case $basic_machine in
m88110 | m680[01234]0 | m683?2 | m68360 | z8k | v70 | h8500 | w65) # CYGNUS LOCAL
basic_machine=$basic_machine-unknown
;;
+# start-sanitize-tx49
+ mips64tx49 | mips64tx49el)
+ basic_machine=$basic_machine-unknown
+ ;;
+# end-sanitize-tx49
# start-sanitize-tx19
mipstx19 | mipstx19el)
basic_machine=$basic_machine-unknown
@@ -284,6 +294,10 @@ case $basic_machine in
mipstx19-* | mipstx19el-*)
;;
# end-sanitize-tx19
+# start-sanitize-tx49
+ mips64tx49-* | mips64tx49el-*)
+ ;;
+# end-sanitize-tx49
# start-sanitize-r5900
mips64r5900-* | mips64r5900el-*) # CYGNUS LOCAL gavin/r5900
;;