Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2d4a1cf

Browse files
committed
prefer gfortran over g77 and vendor compilers on OS X and Linux
1 parent a419a30 commit 2d4a1cf

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

numpy/distutils/fcompiler/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -709,11 +709,11 @@ def _environment_hook(self, name, hook_name):
709709
('linux.*', ('gnu95','intel','lahey','pg','absoft','nag','vast','compaq',
710710
'intele','intelem','gnu','g95','pathf95')),
711711
('darwin.*', ('gnu95', 'nag', 'absoft', 'ibm', 'intel', 'gnu', 'g95', 'pg')),
712-
('sunos.*', ('sun','gnu95','gnu','g95')),
713-
('irix.*', ('mips','gnu95','gnu',)),
714-
('aix.*', ('ibm','gnu95','gnu',)),
712+
('sunos.*', ('sun','gnu','gnu95','g95')),
713+
('irix.*', ('mips','gnu','gnu95',)),
714+
('aix.*', ('ibm','gnu','gnu95',)),
715715
# os.name mappings
716-
('posix', ('gnu95','gnu',)),
716+
('posix', ('gnu','gnu95',)),
717717
('nt', ('gnu','gnu95',)),
718718
('mac', ('gnu95','gnu','pg')),
719719
)

0 commit comments

Comments
 (0)