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.

20 lines
440 B

  1. case "$ROCKCFG_MIPS_ENDIANESS" in
  2. EL)
  3. arch_bigendian=no
  4. arch_endianess="el" ;;
  5. EB)
  6. arch_bigendian=yes
  7. arch_endianess="" ;;
  8. esac
  9. case "$ROCKCFG_MIPS_ABI" in
  10. *32)
  11. arch_machine=mips
  12. arch_target="${arch_machine}${arch_endianess}-unknown-linux-gnu" ;;
  13. *64)
  14. arch_machine=mips64
  15. arch_target="${arch_machine}${arch_endianess}-unknown-linux-gnu"
  16. arch_target32="mips${arch_endianess}-unknown-linux-gnu"
  17. ;;
  18. esac