瀏覽代碼

configure.ac: disable ICC on windows systems

Nathalie Furmento 13 年之前
父節點
當前提交
71243a4fc4
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      configure.ac

+ 4 - 0
configure.ac

@@ -1405,6 +1405,10 @@ if test "$enable_cuda" = "yes" -a "$ICC" != ""; then
            AC_MSG_RESULT(no)]
    )
 fi
+# Disable ICC on windows
+if test "x$ICC" != "x" -a "$starpu_windows" = "yes" ; then
+    ICC=""
+fi
 if test "x$ICC" != "x"; then
   AC_DEFINE(STARPU_HAVE_ICC, [], [Define this if icc is available])
 fi