소스 검색

configure.ac: disable openmp on windows architectures

Nathalie Furmento 6 년 전
부모
커밋
d939ae15c7
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      configure.ac

+ 4 - 0
configure.ac

@@ -2869,6 +2869,10 @@ AC_ARG_ENABLE(openmp, [AS_HELP_STRING([--enable-openmp],
 
 AC_MSG_CHECKING(for OpenMP runtime support)
 
+if test x$starpu_windows = xyes ; then
+   enable_openmp=no
+fi
+
 if test x$enable_openmp = xyes; then
 	AC_DEFINE(STARPU_OPENMP, [1], [Define this to enable OpenMP runtime support])
 fi