From 7ad9ef7d84c9572d207da00ea269883f9c675b82 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Thu, 7 Mar 2019 20:54:00 +0100 Subject: [PATCH] not needed anymore --- installation/mods_Abaqus/abaqus_v6.env | 5 ++--- installation/mods_Abaqus/abaqus_v6_debug.env | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/installation/mods_Abaqus/abaqus_v6.env b/installation/mods_Abaqus/abaqus_v6.env index 0b4a7fd43..6704b0444 100644 --- a/installation/mods_Abaqus/abaqus_v6.env +++ b/installation/mods_Abaqus/abaqus_v6.env @@ -36,15 +36,14 @@ else: # -implicitnone assume no implicit types (e.g. i for integer) # -standard-semantics sets standard (Fortran 2008) and some other conventions # -assume nostd_mod_proc_name avoid problems with libraries compiled without that option -# -real-size 64 -DFLOAT=8 assume size of real to be 8 bytes, matches our definition of pReal -# -integer-size 32 -DINT=4 assume size of integer to be 4 bytes, matches our definition of pInt +# -real-size 64 assume size of real to be 8 bytes, matches our definition of pReal compile_fortran = (fortCmd + " -c -fPIC -auto -shared-intel " + "-I%I -free -O3 -fpp -fopenmp " + "-ftz -diag-disable 5268 " + "-implicitnone -standard-semantics " + "-assume nostd_mod_proc_name " + - "-real-size 64 -integer-size 32 -DFLOAT=8 -DINT=4 " + + "-real-size 64 " + '-DDAMASKVERSION=\\\"%s\\\"'%DAMASKVERSION) # Abaqus/CAE will generate an input file without parts and assemblies. diff --git a/installation/mods_Abaqus/abaqus_v6_debug.env b/installation/mods_Abaqus/abaqus_v6_debug.env index c967c1e65..1bf6b1a6e 100644 --- a/installation/mods_Abaqus/abaqus_v6_debug.env +++ b/installation/mods_Abaqus/abaqus_v6_debug.env @@ -36,8 +36,7 @@ else: # -implicitnone assume no implicit types (e.g. i for integer) # -standard-semantics sets standard (Fortran 2008) and some other conventions # -assume nostd_mod_proc_name avoid problems with libraries compiled without that option -# -real-size 64 -DFLOAT=8 assume size of real to be 8 bytes, matches our definition of pReal -# -integer-size 32 -DINT=4 assume size of integer to be 4 bytes, matches our definition of pInt +# -real-size 64 assume size of real to be 8 bytes, matches our definition of pReal # 'check pointers' does not work @@ -46,7 +45,7 @@ compile_fortran = (fortCmd + " -c -fPIC -auto -shared-intel " + "-ftz -diag-disable 5268 " + "-implicitnone -standard-semantics " + "-assume nostd_mod_proc_name " + - "-real-size 64 -integer-size 32 -DFLOAT=8 -DINT=4 " + + "-real-size 64 " + "-check bounds,format,output_conversion,uninit " + "-ftrapuv -fpe-all0 " + "-g -traceback -gen-interfaces -fp-stack-check -fp-model strict " +