Changeset 3006
- Timestamp:
- Aug 14, 2017 3:32:52 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 1 Exercises 2 2 GSASII.BAT 3 binwin2.7
-
- Property svn:ignore
-
trunk/fsource/SConstruct
r2863 r3006 125 125 The following options override defaults set in the scons script: 126 126 127 FCompiler=<name> -- define the name of the fortran compiler, typically g 77128 or gfortran; default is to use g 77on Windows and gfortran elsewhere. If127 FCompiler=<name> -- define the name of the fortran compiler, typically gnu 128 or gfortran; default is to use gnu on Windows and gfortran elsewhere. If 129 129 you use something other than these, you must also specify F2PYflags. 130 130 131 131 FORTpath=<path> -- define a path to the fortran program; default is to use 132 first gfortran (g 77for Windows) found in path132 first gfortran (gnu for Windows) found in path 133 133 134 134 FORTflags='string' -- string of options to be used for Fortran … … 224 224 if F2PYflags == "": F2PYflags = '--fcompiler=gnu95 --f77exec=gfortran --f77flags="-fno-range-check -m32"' 225 225 elif sys.platform == "win32": 226 if F2PYflags == "": F2PYflags = '--compiler=mingw32 --fcompiler=g fortran--f77flags="-fno-range-check -m64"'226 if F2PYflags == "": F2PYflags = '--compiler=mingw32 --fcompiler=gnu95 --f77flags="-fno-range-check -m64"' 227 227 elif FCompiler == 'g77': 228 228 if FORTpath == "": FORTpath = G77path 229 229 if sys.platform == "win32": 230 if F2PYflags == "": F2PYflags = '--compiler=mingw32 --fcompiler=g 77'231 if FORTflags == "": FORTflags = ' -w -O2 -fno-automatic -finit-local-zero -malign-double -mwindows'230 if F2PYflags == "": F2PYflags = '--compiler=mingw32 --fcompiler=gnu' 231 if FORTflags == "": FORTflags = ' -w -O2 -fno-automatic -finit-local-zero -malign-double' 232 232 else: 233 233 if F2PYflags == "": F2PYflags = '--fcompiler=gnu --f77exec=g77 --f77flags="-fno-range-check"'
Note: See TracChangeset
for help on using the changeset viewer.