summaryrefslogtreecommitdiffstats
path: root/src/eigen-2-fix-compiler-version.patch
blob: 009af42f1877443bbde1a0fa7e51c54910b54b15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
This file is part of MXE. See LICENSE.md for licensing information.

--- a/cmake/EigenTesting.cmake
+++ b/cmake/EigenTesting.cmake
@@ -324,7 +324,7 @@
     # on all other system we rely on ${CMAKE_CXX_COMPILER}
     # supporting a "--version" or "/version" flag
     
-    if(WIN32 AND NOT CYGWIN)
+    if(WIN32 AND NOT CMAKE_COMPILER_IS_GNUCXX AND NOT CMAKE_COMPILER_IS_GNUCC)
       set(EIGEN_CXX_FLAG_VERSION "/version")
     else()
       set(EIGEN_CXX_FLAG_VERSION "--version")