Initial ARC support.

This commit is contained in:
David Edelsohn 1994-11-30 02:16:54 +00:00
parent 8515dbe235
commit 6ea93cc98c
2 changed files with 36 additions and 0 deletions

View File

@ -154,6 +154,34 @@ else
done
fi
arc_files="ChangeLog configure.in configure"
if ( echo $* | grep keep\-arc > /dev/null ) ; then
for i in $arc_files ; do
if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping arc stuff in $i
fi
fi
done
else
for i in $arc_files ; do
if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"arc\" from $i...
fi
cp $i new
sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/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

View File

@ -1,3 +1,11 @@
start-sanitize-arc
Tue Nov 29 18:12:22 1994 Doug Evans <dje@canuck.cygnus.com>
* configure.in (arc-*-elf*): Recognize.
* configure: "regenerated".
* config/tc-arc.c, config/tc-arc.h: New files.
end-sanitize-arc
Tue Nov 29 13:58:10 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
Use libiberty version of xmalloc: