From: degomme Date: Mon, 7 Mar 2016 09:29:29 +0000 (+0100) Subject: Disable raw contextes on Windows. X-Git-Tag: v3_13~500^2~4^2~1 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5eee8b4db11d68350dc98a92f5562eaf8e9f05c3 Disable raw contextes on Windows. They used to work on 32 bit version of simgrid on Windows, but are broken for 64 bits We don't want to spend time maintaining them. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 3ec3296a3b..6ef0d803a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -194,8 +194,8 @@ IF(CMAKE_SYSTEM_PROCESSOR MATCHES ".86|AMD64|amd64") message(STATUS "System processor: x86_64 (${CMAKE_SYSTEM_PROCESSOR}, 64 bits)") set(PROCESSOR_x86_64 1) ENDIF() - if (MSVC) - message(STATUS "Disable fast raw contextes on Microsoft Visual.") + if (WIN32) + message(STATUS "Disable fast raw contextes on Windows.") else() set(HAVE_RAW_CONTEXTS 1) endif()