Skip to content

Commit 11d8718

Browse files
committed
GraphBLAS: Don't override setting for GB_jitifyer_set_use_cmake on MinGW
Missing part from #513.
1 parent 9a12e5e commit 11d8718

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GraphBLAS/Source/GB_jitifyer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ void GB_jitifyer_set_use_cmake (bool use_cmake)
11591159
{
11601160
#pragma omp critical (GB_jitifyer_worker)
11611161
{
1162-
#if GB_WINDOWS
1162+
#if defined (_MSC_VER)
11631163
// Windows requires cmake
11641164
GB_jit_use_cmake = true ;
11651165
#else

0 commit comments

Comments
 (0)