mirror of git://sourceware.org/git/glibc.git
Handle mips-unknown-linux-gnu
This commit is contained in:
parent
3c143620a5
commit
ea971c878f
|
@ -389,6 +389,14 @@ case $basic_machine in
|
||||||
miniframe)
|
miniframe)
|
||||||
basic_machine=m68000-convergent
|
basic_machine=m68000-convergent
|
||||||
;;
|
;;
|
||||||
|
mipsel*-linux*)
|
||||||
|
basic_machine=mipsel-unknown
|
||||||
|
os=-linux
|
||||||
|
;;
|
||||||
|
mips*-linux*)
|
||||||
|
basic_machine=mips-unknown
|
||||||
|
os=-linux
|
||||||
|
;;
|
||||||
mips3*-*)
|
mips3*-*)
|
||||||
basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
|
basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
|
||||||
;;
|
;;
|
||||||
|
@ -607,7 +615,11 @@ case $basic_machine in
|
||||||
# Here we handle the default manufacturer of certain CPU types. It is in
|
# Here we handle the default manufacturer of certain CPU types. It is in
|
||||||
# some cases the only manufacturer, in others, it is the most popular.
|
# some cases the only manufacturer, in others, it is the most popular.
|
||||||
mips)
|
mips)
|
||||||
|
if [ x$os = x-linux ]; then
|
||||||
|
basic_machine=mips-unknown
|
||||||
|
else
|
||||||
basic_machine=mips-mips
|
basic_machine=mips-mips
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
romp)
|
romp)
|
||||||
basic_machine=romp-ibm
|
basic_machine=romp-ibm
|
||||||
|
|
Loading…
Reference in New Issue