aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>1997-12-22 14:09:49 +0000
committerDoug Evans <dje@google.com>1997-12-22 14:09:49 +0000
commit69f273d821233f31d62db4067564e6a0a184843e (patch)
tree435be055a93cebbbeb71188c7cdd5e02aea858a0
parentcc8b3b770f8ce1ae01dcd761cf60e8eef1348bce (diff)
downloadgdb-69f273d821233f31d62db4067564e6a0a184843e.zip
gdb-69f273d821233f31d62db4067564e6a0a184843e.tar.gz
gdb-69f273d821233f31d62db4067564e6a0a184843e.tar.bz2
* configure.in: Add txvu-elf support.
* config.sub: Recognize txvu cpu.
-rw-r--r--.Sanitize29
-rw-r--r--ChangeLog7
-rw-r--r--configure.in6
3 files changed, 42 insertions, 0 deletions
diff --git a/.Sanitize b/.Sanitize
index 5de9dd8..d2b2884 100644
--- a/.Sanitize
+++ b/.Sanitize
@@ -401,6 +401,35 @@ else
done
fi
+sky_files="ChangeLog config.sub configure.in"
+
+if ( echo $* | grep keep\-sky > /dev/null ) ; then
+ for i in $sky_files ; do
+ if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping sky stuff in $i
+ fi
+ fi
+ done
+else
+ for i in * ; do
+ if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"sky\" from $i...
+ fi
+ cp $i new
+ sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/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
+
if ( echo $* | grep keep\-ide > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-ide $i > /dev/null) ; then
diff --git a/ChangeLog b/ChangeLog
index 7ca04f8..72e5f3b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+start-sanitize-syk
+Mon Dec 22 14:08:27 1997 Doug Evans <devans@canuck.cygnus.com>
+
+ * configure.in: Add txvu-elf support.
+ * config.sub: Recognize txvu cpu.
+
+end-sanitize-sky
start-sanitize-vr5400
Mon Dec 22 11:27:12 1997 Jeffrey A Law (law@cygnus.com)
diff --git a/configure.in b/configure.in
index 08b7f28..48efcdc 100644
--- a/configure.in
+++ b/configure.in
@@ -618,6 +618,12 @@ case "${target}" in
use_gnu_ld=no
fi
;;
+# start-sanitize-sky
+ txvu-*-elf*)
+ noconfigdirs="$noconfigdirs gcc gdb target-newlib target-libgloss"
+ noconfigdirs="$noconfigdirs target-librx target-libg++ target-libstdc++ target-libio"
+ ;;
+# end-sanitize-sky
v810-*-*)
noconfigdirs="$noconfigdirs bfd binutils gas gcc gdb ld target-libio target-libg++ target-libstdc++ opcodes target-libgloss"
;;