Support Intel ICC

This commit is contained in:
Brian West 2014-03-19 14:33:31 -05:00
parent 58e8037613
commit b8f1a1779f
2 changed files with 12 additions and 0 deletions

View File

@ -257,6 +257,12 @@ elif test "x${ax_cv_c_compiler_vendor}" = "xgnu" ; then
SOLINK="-shared -Xlinker -x" SOLINK="-shared -Xlinker -x"
;; ;;
esac esac
elif test "x${ax_cv_c_compiler_vendor}" = "xintel" ; then
case "$host" in
*)
SOLINK="-shared -Xlinker -x"
;;
esac
else else
AC_ERROR([Please update configure.in with SOLINK values for your compiler]) AC_ERROR([Please update configure.in with SOLINK values for your compiler])
fi fi

View File

@ -101,6 +101,12 @@ elif test "x${ax_cv_c_compiler_vendor}" = "xgnu" ; then
SOLINK="-shared -Xlinker -x" SOLINK="-shared -Xlinker -x"
;; ;;
esac esac
elif test "x${ax_cv_c_compiler_vendor}" = "xintel" ; then
case "$host" in
*)
SOLINK="-shared -Xlinker -x"
;;
esac
else else
AC_ERROR([Please update configure.in with SOLINK values for your compiler]) AC_ERROR([Please update configure.in with SOLINK values for your compiler])
fi fi