not needed anymore
This commit is contained in:
parent
a80b57c96b
commit
7ad9ef7d84
|
@ -36,15 +36,14 @@ else:
|
||||||
# -implicitnone assume no implicit types (e.g. i for integer)
|
# -implicitnone assume no implicit types (e.g. i for integer)
|
||||||
# -standard-semantics sets standard (Fortran 2008) and some other conventions
|
# -standard-semantics sets standard (Fortran 2008) and some other conventions
|
||||||
# -assume nostd_mod_proc_name avoid problems with libraries compiled without that option
|
# -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
|
# -real-size 64 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
|
|
||||||
|
|
||||||
compile_fortran = (fortCmd + " -c -fPIC -auto -shared-intel " +
|
compile_fortran = (fortCmd + " -c -fPIC -auto -shared-intel " +
|
||||||
"-I%I -free -O3 -fpp -fopenmp " +
|
"-I%I -free -O3 -fpp -fopenmp " +
|
||||||
"-ftz -diag-disable 5268 " +
|
"-ftz -diag-disable 5268 " +
|
||||||
"-implicitnone -standard-semantics " +
|
"-implicitnone -standard-semantics " +
|
||||||
"-assume nostd_mod_proc_name " +
|
"-assume nostd_mod_proc_name " +
|
||||||
"-real-size 64 -integer-size 32 -DFLOAT=8 -DINT=4 " +
|
"-real-size 64 " +
|
||||||
'-DDAMASKVERSION=\\\"%s\\\"'%DAMASKVERSION)
|
'-DDAMASKVERSION=\\\"%s\\\"'%DAMASKVERSION)
|
||||||
|
|
||||||
# Abaqus/CAE will generate an input file without parts and assemblies.
|
# Abaqus/CAE will generate an input file without parts and assemblies.
|
||||||
|
|
|
@ -36,8 +36,7 @@ else:
|
||||||
# -implicitnone assume no implicit types (e.g. i for integer)
|
# -implicitnone assume no implicit types (e.g. i for integer)
|
||||||
# -standard-semantics sets standard (Fortran 2008) and some other conventions
|
# -standard-semantics sets standard (Fortran 2008) and some other conventions
|
||||||
# -assume nostd_mod_proc_name avoid problems with libraries compiled without that option
|
# -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
|
# -real-size 64 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
|
|
||||||
|
|
||||||
# 'check pointers' does not work
|
# 'check pointers' does not work
|
||||||
|
|
||||||
|
@ -46,7 +45,7 @@ compile_fortran = (fortCmd + " -c -fPIC -auto -shared-intel " +
|
||||||
"-ftz -diag-disable 5268 " +
|
"-ftz -diag-disable 5268 " +
|
||||||
"-implicitnone -standard-semantics " +
|
"-implicitnone -standard-semantics " +
|
||||||
"-assume nostd_mod_proc_name " +
|
"-assume nostd_mod_proc_name " +
|
||||||
"-real-size 64 -integer-size 32 -DFLOAT=8 -DINT=4 " +
|
"-real-size 64 " +
|
||||||
"-check bounds,format,output_conversion,uninit " +
|
"-check bounds,format,output_conversion,uninit " +
|
||||||
"-ftrapuv -fpe-all0 " +
|
"-ftrapuv -fpe-all0 " +
|
||||||
"-g -traceback -gen-interfaces -fp-stack-check -fp-model strict " +
|
"-g -traceback -gen-interfaces -fp-stack-check -fp-model strict " +
|
||||||
|
|
Loading…
Reference in New Issue