2012-01-31 20:24:49 +05:30
|
|
|
#ifdef __GFORTRAN__
|
2015-04-13 15:32:52 +05:30
|
|
|
write(6,*) 'Compiled with ', compiler_version() !not supported by and ifort <= 15 (and old gfortran)
|
|
|
|
write(6,*) 'With options ', compiler_options()
|
2012-01-31 20:24:49 +05:30
|
|
|
#endif
|
2013-10-23 14:08:14 +05:30
|
|
|
#ifdef __INTEL_COMPILER
|
|
|
|
write(6,'(a,i4.4,a,i8.8)') ' Compiled with Intel fortran version ', __INTEL_COMPILER,&
|
2015-04-13 15:32:52 +05:30
|
|
|
', build date ', __INTEL_COMPILER_BUILD_DATE
|
2012-01-31 20:24:49 +05:30
|
|
|
#endif
|
|
|
|
write(6,*) 'Compiled on ', __DATE__,' at ',__TIME__
|
|
|
|
write(6,*)
|
2013-10-10 15:08:31 +05:30
|
|
|
flush(6)
|