corrected wrong compiler option for gfortran in setup and updated naming scheme
This commit is contained in:
parent
b76fee325b
commit
77b2eef269
|
@ -49,8 +49,8 @@ if options.compiler not in compilers:
|
|||
parser.error('compiler switch "--F90" has to be one out of: %s'%(', '.join(compilers)))
|
||||
|
||||
f2py_compiler = {
|
||||
'gfortran': 'gnu95 --f90flags="-fno-range-check -xf95-cpp-input -std=f2008 -fall-intrinsics -DSpectral -fdefault-real-8 -fdefault-integer-4 -DFLOAT=8 -DINT=4 -I${DAMASK_ROOT}/lib"',
|
||||
'gnu95': 'gnu95 --f90flags="-fno-range-check -xf95-cpp-input -std=f2008 -fall-intrinsics -DSpectral -fdefault-real-8 -fdefault-integer-4 -DFLOAT=8 -DINT=4 -I${DAMASK_ROOT}/lib"',
|
||||
'gfortran': 'gnu95 --f90flags="-fno-range-check -xf95-cpp-input -std=f2008 -fall-intrinsics -DSpectral -fdefault-real-8 -fdefault-double-8 -DFLOAT=8 -DINT=4 -I${DAMASK_ROOT}/lib"',
|
||||
'gnu95': 'gnu95 --f90flags="-fno-range-check -xf95-cpp-input -std=f2008 -fall-intrinsics -DSpectral -fdefault-real-8 -fdefault-double-8 -DFLOAT=8 -DINT=4 -I${DAMASK_ROOT}/lib"',
|
||||
'intel32': 'intel --f90flags="-fpp -stand f03 -diag-disable 5268 -assume byterecl -DSpectral -real-size 64 -integer-size 32 -DFLOAT=8 -DINT=4 -I${DAMASK_ROOT}/lib"',
|
||||
'intel': 'intelem --f90flags="-fpp -stand f03 -diag-disable 5268 -assume byterecl -DSpectral -real-size 64 -integer-size 32 -DFLOAT=8 -DINT=4 -I${DAMASK_ROOT}/lib"',
|
||||
'ifort': 'intelem --f90flags="-fpp -stand f03 -diag-disable 5268 -assume byterecl -DSpectral -real-size 64 -integer-size 32 -DFLOAT=8 -DINT=4 -I${DAMASK_ROOT}/lib"',
|
||||
|
@ -80,19 +80,19 @@ bin_link = { \
|
|||
'marc_addUserOutput.py',
|
||||
'mentat_pbcOnBoxMesh.py',
|
||||
'mentat_spectralBox.py',
|
||||
'patchFromReconstructedBoundaries.py',
|
||||
'spectral_geomCheck.py',
|
||||
'spectral_geomMultiply.py',
|
||||
'spectral_geomCanvas.py',
|
||||
'spectral_minimalSurface.py',
|
||||
'spectral_vicinityOffset.py',
|
||||
'spectral_ang2geom.py',
|
||||
'spectral_randomSeeding.py',
|
||||
'spectral_geomPack.py',
|
||||
'spectral_geomUnpack.py',
|
||||
'spectral_geomTranslate.py',
|
||||
'spectral_voronoiTessellation.py',
|
||||
'OIMang_hex2cub.py',
|
||||
'patchFromReconstructedBoundaries.py',
|
||||
'spectral_geomCanvas.py',
|
||||
'spectral_geomCheck.py',
|
||||
'spectral_geomFromAng.py',
|
||||
'spectral_geomFromMinimalSurface.py',
|
||||
'spectral_geomFromVoronoiTessellation.py',
|
||||
'spectral_geomMultiply.py',
|
||||
'spectral_geomPack.py',
|
||||
'spectral_geomTranslate.py',
|
||||
'spectral_geomUnpack.py',
|
||||
'spectral_geomVicinityOffset.py',
|
||||
'spectral_randomSeeding.py',
|
||||
],
|
||||
'post' : [
|
||||
'3Dvisualize.py',
|
||||
|
|
Loading…
Reference in New Issue