added $Id$ and some further comments

This commit is contained in:
Philip Eisenlohr 2011-08-26 07:29:55 +00:00
parent f3c2547fba
commit d4e7d6e02f
1 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,7 @@
#
# MPIE CPFEM Abaqus Environment File
# DAMASK Abaqus Environment File
#
# $Id$
# ------------------------------------
# originally taken from Abaqus ver. 6.9.1
#
@ -26,8 +28,12 @@ if os.path.exists(os.path.join(fortDefPath, fortCompiler)):
else:
fortCmd = fortCompiler
# Add the flag "-free" to the compile_fortran command below to use free-
# format FORTRAN 90 syntax.
# "-free" to use free-format FORTRAN 90 syntax
# "-heap-arrays" increase heap size
# "-O3" maximum optimization level
# "-fpp" use FORTRAN preprocessor on source code
# "-openmp" build with openMP support
compile_fortran = (fortCmd + " -c -fPIC -auto -extend_source -w90 -w95 " +
"-WB -I%I -free -heap-arrays 500000000 -O3 -fpp -openmp")