Added pathcc support for mips.

This commit is contained in:
wbhart 2009-04-11 02:04:59 +00:00
parent 057df2db7c
commit 379cd11ffb

View File

@ -799,17 +799,20 @@ case $host in
[mips64*-*-* | mips*-*-irix[6789]*])
abilist="n32 64 o32"
cclist_n32="gcc cc"
cclist_n32="pathcc gcc cc"
gcc_n32_cflags="-O2 -mabi=n32"
cc_n32_cflags="-O2 -n32" # no -g, it disables all optimizations
pathcc_cflags="-O0"
limb_n32=longlong
path_n32="mips64"
cclist_64="gcc cc"
cclist_64="pathcc gcc cc"
gcc_64_cflags="-O2 -mabi=64"
gcc_64_ldflags="-Wc,-mabi=64"
cc_64_cflags="-O2 -64" # no -g, it disables all optimizations
cc_64_ldflags="-Wc,-64"
pathcc_64_cflags="-O0"
pathcc_64_ldflags="-Wc,-mabi=64"
path_64="mips64"
;;
esac