* config.sub, configure.in: Add entries for m32r.

This commit is contained in:
David Edelsohn 1996-09-09 19:23:41 +00:00
parent 4a9149d501
commit 8863243604
4 changed files with 51 additions and 0 deletions

View File

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

View File

@ -1,3 +1,9 @@
start-sanitize-m32r
Mon Sep 9 12:21:30 1996 Doug Evans <dje@canuck.cygnus.com>
* config.sub, configure.in: Add entries for m32r.
end-sanitize-m32r
Thu Sep 5 13:52:47 1996 Tom Tromey <tromey@creche.cygnus.com>
* Makefile.in (inet-install): Don't run install-gzip.

7
config.sub vendored
View File

@ -168,14 +168,21 @@ case $basic_machine in
mips64vr4100 | mips64vr4100el) # CYGNUS LOCAL jsmith/vr4100
basic_machine=$basic_machine-unknown
;;
# start-sanitize-v850
v850) # CYGNUS LOCAL jtc/v850
basic_machine=$basic_machine-unknown
;;
# end-sanitize-v850
# start-sanitize-d10v
d10v) # CYGNUS LOCAL meissner/d10v
basic_machine=$basic_machine-unknown
;;
# end-sanitize-d10v
# start-sanitize-m32r
m32r)
basic_machine=$basic_machine-unknown
;;
# end-sanitize-m32r
# Object if more than one company name word.
*-*-*)
echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2

View File

@ -487,6 +487,11 @@ case "${target}" in
# but that's okay since emacs doesn't work anyway
noconfigdirs="$noconfigdirs emacs emacs19 target-libgloss"
;;
# start-sanitize-m32r
m32r-*-*)
noconfigdirs="$noconfigdirs target-libgloss libio libstdc++ libg++ gdb"
;;
# end-sanitize-m32r
powerpc-*-aix*)
# copied from rs6000-*-* entry
noconfigdirs="$noconfigdirs gprof cvs target-libgloss"