2013-03-22 23:05:05 +05:30
|
|
|
|
! Copyright 2011-13 Max-Planck-Institut f<>r Eisenforschung GmbH
|
|
|
|
|
!
|
|
|
|
|
! This file is part of DAMASK,
|
|
|
|
|
! the D<>sseldorf Advanced MAterial Simulation Kit.
|
|
|
|
|
!
|
|
|
|
|
! DAMASK is free software: you can redistribute it and/or modify
|
|
|
|
|
! it under the terms of the GNU General Public License as published by
|
|
|
|
|
! the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
! (at your option) any later version.
|
|
|
|
|
!
|
|
|
|
|
! DAMASK is distributed in the hope that it will be useful,
|
|
|
|
|
! but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
! GNU General Public License for more details.
|
|
|
|
|
!
|
|
|
|
|
! You should have received a copy of the GNU General Public License
|
|
|
|
|
! along with DAMASK. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
!
|
|
|
|
|
!##############################################################
|
2012-01-31 20:24:49 +05:30
|
|
|
|
!$Id$
|
|
|
|
|
#ifdef __GFORTRAN__
|
|
|
|
|
write(6,*) 'Compiled with ', compiler_version() !not supported by GFORTRAN 4.5 and ifort 12
|
|
|
|
|
write(6,*) 'With options ', compiler_options()
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef __INTEL_COMPILER
|
2012-02-01 00:48:55 +05:30
|
|
|
|
write(6,'(a,i4.4,a,i8.8)') ' Compiled with Intel fortran version ', __INTEL_COMPILER,&
|
2012-01-31 20:24:49 +05:30
|
|
|
|
', build date ', __INTEL_COMPILER_BUILD_DATE
|
|
|
|
|
#endif
|
|
|
|
|
write(6,*) 'Compiled on ', __DATE__,' at ',__TIME__
|
|
|
|
|
write(6,*)
|
2012-09-24 17:40:28 +05:30
|
|
|
|
flush(6)
|