ENH: add support for visual age fortran on linux
This commit is contained in:
parent
564a23c6ba
commit
a40147abce
|
@ -11,7 +11,7 @@ PROGRAM CMakeFortranCompilerId
|
||||||
! This compiler is either not known or is too old to define an
|
! This compiler is either not known or is too old to define an
|
||||||
! identification macro. Try to identify the platform and guess that
|
! identification macro. Try to identify the platform and guess that
|
||||||
! it is the native compiler.
|
! it is the native compiler.
|
||||||
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
|
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) || defined ( __IBM__ ) || defined ( __IBMC__ )
|
||||||
PRINT *, 'INFO:compiler[VisualAge]'
|
PRINT *, 'INFO:compiler[VisualAge]'
|
||||||
#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
|
#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
|
||||||
PRINT *, 'INFO:compiler[MIPSpro]'
|
PRINT *, 'INFO:compiler[MIPSpro]'
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
SET(CMAKE_SHARED_LIBRARY_C_FLAGS "")
|
||||||
|
SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
|
||||||
|
message(" :::::::: here")
|
|
@ -0,0 +1,2 @@
|
||||||
|
SET(CMAKE_SHARED_LIBRARY_C_FLAGS "")
|
||||||
|
SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
|
Loading…
Reference in New Issue