We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5dc8d0 commit 9551a31Copy full SHA for 9551a31
CMAKE/CheckLAPACKCompilerFlags.cmake
@@ -22,6 +22,9 @@ if ( FORTRAN_ILP )
22
else ()
23
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -integer-size 64")
24
endif()
25
+ elseif( (CMAKE_Fortran_COMPILER_ID STREQUAL "VisualAge" ) OR # CMake 2.6
26
+ (CMAKE_Fortran_COMPILER_ID STREQUAL "XL" ) ) # CMake 2.8
27
+ set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -qintsize=8")
28
else()
29
set(CPE_ENV $ENV{PE_ENV})
30
if(CPE_ENV STREQUAL "CRAY")
0 commit comments