From: Timo Heister Date: Thu, 25 Feb 2016 17:29:55 +0000 (-0500) Subject: blacklist intel 16.0.1 X-Git-Tag: v8.5.0-rc1~1280^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2245%2Fhead;p=dealii.git blacklist intel 16.0.1 --- diff --git a/cmake/checks/check_03_compiler_bugs.cmake b/cmake/checks/check_03_compiler_bugs.cmake index 2971336755..fa88b646d5 100644 --- a/cmake/checks/check_03_compiler_bugs.cmake +++ b/cmake/checks/check_03_compiler_bugs.cmake @@ -434,3 +434,11 @@ IF(DEAL_II_WITH_CXX11) RESET_CMAKE_REQUIRED() ENDIF() +# +# Intel 16.0.1 produces wrong code that creates a race condition in +# tests/fe/curl_curl_01.debug but 16.0.2 is known to work. Blacklist this +# version. Also see github.com/dealii/dealii/issues/2203 +# +IF(CMAKE_CXX_COMPILER_ID MATCHES "Intel" AND CMAKE_CXX_COMPILER_VERSION VERSION_EQUAL "16.0.1" ) + MESSAGE(FATAL_ERROR "Intel compiler version 16.0.1 is not supported, please update to 16.0.2 or newer!") +ENDIF()