Skip to content

Commit bfc7838

Browse files
authored
Update CheckLAPACKCompilerFlags.cmake
Adding quotes around a flag passed to the Intel compiler.
1 parent 33b3a45 commit bfc7838

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMAKE/CheckLAPACKCompilerFlags.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if( CMAKE_Fortran_COMPILER_ID MATCHES "Intel" )
2020
if ( WIN32 )
2121
set(FOPT_ILP64 /integer-size:64)
2222
else ()
23-
set(FOPT_ILP64 -integer-size 64)
23+
set(FOPT_ILP64 "-integer-size 64")
2424
endif()
2525
elseif( (CMAKE_Fortran_COMPILER_ID STREQUAL "VisualAge" ) OR # CMake 2.6
2626
(CMAKE_Fortran_COMPILER_ID STREQUAL "XL" ) ) # CMake 2.8

0 commit comments

Comments
 (0)