cc.linux.i386-64-icc 364 B

12345678910111213141516171819202122
  1. : linux.i386-64 icc wrapper : 2011-10-18 :
  2. HOSTTYPE=linux.i386-64-icc
  3. case " $* " in
  4. *" -dumpmachine "*) echo $HOSTTYPE; exit ;;
  5. esac
  6. icc=$(which icc 2>/dev/null)
  7. case $icc in
  8. "") if test -f /etc/profile.d/icc.sh
  9. then . /etc/profile.d/icc.sh
  10. fi
  11. icc=$(which icc 2>/dev/null)
  12. case $icc in
  13. "") echo icc: not found >&2
  14. exit 127
  15. ;;
  16. esac
  17. ;;
  18. esac
  19. $icc "$@"