Skip to content

Commit

Permalink
Fix for using NAG Fortran 95, due to James Graham <jg307@cam.ac.uk>
Browse files Browse the repository at this point in the history
  • Loading branch information
cookedm committed May 17, 2006
1 parent c3f83e9 commit 8cfbbe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/distutils/fcompiler/nag.py
Expand Up @@ -22,7 +22,7 @@ class NAGFCompiler(FCompiler):
def get_flags_linker_so(self):
if sys.platform=='darwin':
return ['-unsharedf95','-Wl,-bundle,-flat_namespace,-undefined,suppress']
return ["-Wl,shared"]
return ["-Wl,-shared"]
def get_flags_opt(self):
return ['-O4']
def get_flags_arch(self):
Expand Down

0 comments on commit 8cfbbe1

Please sign in to comment.