소스 검색

configure.ac: disable OpenMP when simgrid is enabled

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

+ 4 - 0
configure.ac

@@ -2876,6 +2876,10 @@ if test "x$use_mpi_master_slave" = "xyes" ; then
    enable_openmp=no
    openmp_msg="incompatibility with MPI master slave support"
 fi
+if test x$enable_simgrid = xyes ; then
+   enable_openmp=no
+   openmp_msg="incompatibility with Simgrid support"
+fi
 
 if test x$enable_openmp = xyes; then
 	AC_DEFINE(STARPU_OPENMP, [1], [Define this to enable OpenMP runtime support])