From 27a41796590ef84135bf0272b1302668ceedf8be Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Thu, 25 Feb 2016 12:29:55 -0500 Subject: [PATCH] blacklist intel 16.0.1 --- cmake/checks/check_03_compiler_bugs.cmake | 8 ++++++++ 1 file changed, 8 insertions(+) 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() -- 2.39.5