File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
doc/release/upcoming_changes
numpy/distutils/fcompiler Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change
1
+ Use f90 compiler specified in command line args
2
+ --------------------------------------------------------
3
+
4
+ The compiler command selection for Fortran Portland Group Compiler is changed in `numpy.distutils.fcompiler `.
5
+ This only affects the linking command.
6
+ This forces the use of the executable provided by the command line option (if provided)
7
+ instead of the pgfortran executable.
8
+ If no executable is provided to the command line option it defaults to the pgf90 executable,
9
+ wich is an alias for pgfortran according to the PGI documentation.
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class PGroupFCompiler(FCompiler):
31
31
'compiler_f77' : ["pgfortran" ],
32
32
'compiler_fix' : ["pgfortran" , "-Mfixed" ],
33
33
'compiler_f90' : ["pgfortran" ],
34
- 'linker_so' : ["pgfortran " ],
34
+ 'linker_so' : ["<F90> " ],
35
35
'archiver' : ["ar" , "-cr" ],
36
36
'ranlib' : ["ranlib" ]
37
37
}
You can’t perform that action at this time.
0 commit comments