mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
382 B

case "$ROCKCFG_MIPS_ENDIANESS" in
EL)
arch_bigendian=no
arch_endianess="el" ;;
EB)
arch_bigendian=yes
arch_endianess="" ;;
esac
case "$ROCKCFG_MIPS_ABI" in
*32)
arch_machine=mips
arch_target="${arch_machine}${arch_endianess}-unknown-linux-gnu" ;;
*64)
arch_machine=mips64
arch_target="${arch_machine}${arch_endianess}-unknown-linux-gnu" ;;
esac