diff options
author | cookedm <cookedm@localhost> | 2006-05-17 20:53:44 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2006-05-17 20:53:44 +0000 |
commit | 8cfbbe13d9a2c94529e2d2c06a8e154d9892c8c4 (patch) | |
tree | cf750cc41d421cf5025816a31881096b1496faba /numpy/distutils/fcompiler/nag.py | |
parent | c3f83e91f1e60e5c01d02bf6d6f2f9e58677f252 (diff) | |
download | numpy-8cfbbe13d9a2c94529e2d2c06a8e154d9892c8c4.tar.gz |
Fix for using NAG Fortran 95, due to James Graham <jg307@cam.ac.uk>
Diffstat (limited to 'numpy/distutils/fcompiler/nag.py')
-rw-r--r-- | numpy/distutils/fcompiler/nag.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/nag.py b/numpy/distutils/fcompiler/nag.py index c0b3b17e9..61fab122c 100644 --- a/numpy/distutils/fcompiler/nag.py +++ b/numpy/distutils/fcompiler/nag.py @@ -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): |